forked from hrla28-open-table-app/navbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "opentable_navbar",
"description": "OpenTable NavBar",
"author": "Liezel Manalo",
"engines": {
"node": ">=6.13.0"
},
"main": "server/index.js",
"scripts": {
"start": "nodemon server/index.js",
"test": "mocha test",
"build": "webpack -d --watch",
"seed": "node database/seed10mil.js",
"hit": "artillery run artillery/artillery.yml"
},
"license": "UNLICENSED",
"repository": "https://github.com/hrla28-open-table-app/navbar",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"file-loader": "^3.0.1",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"Faker": "^0.7.2",
"acorn": "^6.1.1",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"css-loader": "^2.1.1",
"express": "^4.16.4",
"moment": "^2.24.0",
"mongoose": "^5.4.19",
"morgan": "^1.9.1",
"nodemon": "^1.18.10",
"pg": "^7.10.0",
"react": "^16.8.6",
"react-autosuggest": "^9.4.3",
"react-dates": "^20.1.0",
"react-dom": "^16.8.6",
"react-overflow-scrolling": "^1.0.0",
"react-with-direction": "^1.3.0",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"webpack-combine-loaders": "^2.0.4"
}
}