forked from facn2/path-18
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
56
57
58
{
"name": "path-18",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"engines": {
"node": ">=8.4"
},
"scripts": {
"bundle": "webpack --config webpack.config.js",
"bundle:watch": "webpack --config webpack.config.js --watch",
"dev:start": "nodemon ./src/start_server",
"start": "node ./src/start_server.js",
"heroku-postbuild": "npm install --only=dev && npm install && npm run bundle"
},
"author": "path-18",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.5",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"html-webpack-plugin": "^2.30.1",
"nodemon": "^1.12.1",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"axios": "^0.16.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"body-parser": "^1.18.2",
"env2": "^2.2.0",
"express": "^4.16.1",
"file-loader": "^1.1.5",
"lodash": "^4.17.4",
"mongoose": "^4.12.2",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-icons": "^2.2.7",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "^4.10.1",
"redux-thunk": "^2.2.0",
"webpack-sass-loaders": "^1.0.0"
}
}