-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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
54
55
{
"name": "app",
"version": "",
"description": "Reviews",
"author": "Darwin Do",
"license": "MIT",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"seed": "node dataseeding/Generators/MasterGenerator.js",
"dev:server": "nodemon ./server/app",
"dev:react": "webpack -d --watch",
"build": "webpack -d --watch",
"start": "node ./server/server"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"eslint-plugin-jsx-a11y": "^6.0.3",
"express": "^4.16.3",
"faker": "^4.1.0",
"moment": "^2.22.2",
"mongoose": "^5.1.3",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-3": "^6.24.1",
"browser-sync": "^2.24.4",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"faker": "^4.1.0",
"node-sass": "^4.9.0",
"nodemon-webpack-plugin": "^3.0.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack": "^2.7.0"
}
}