forked from vasansr/pro-mern-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.08 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "pro-mern-stack",
"version": "1.0.0",
"description": "Pro MERN Stack",
"main": "index.js",
"scripts": {
"start": "node dist/server.bundle.js",
"compile-server": "webpack --config webpack.server-config.js",
"watch-server": "webpack --config webpack.server-config.js --watch",
"start-hook": "nodemon -e js,jsx -w server,src server/start_hook.js",
"compile": "webpack",
"watch": "webpack-dev-server --hot --inline",
"dev-all": "npm run watch & npm run watch-server & npm start",
"dev-all-hook": "npm run watch & npm run start-hook",
"lint": "eslint --ext js,jsx src server webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasansr/pro-mern-stack.git"
},
"keywords": [
"mern",
"react",
"mongodb",
"express",
"node"
],
"author": "Vasan Subramanian",
"license": "ISC",
"bugs": {
"url": "https://github.com/vasansr/pro-mern-stack/issues"
},
"homepage": "https://github.com/vasansr/pro-mern-stack#readme",
"dependencies": {
"babel-polyfill": "^6.13.0",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-session": "^1.14.2",
"isomorphic-fetch": "^2.2.1",
"mongodb": "^2.2.6",
"object-assign": "^4.1.0",
"react": "^15.3.1",
"react-bootstrap": "^0.30.6",
"react-dom": "^15.3.1",
"react-router": "^2.7.0",
"react-router-bootstrap": "^0.23.1",
"react-select": "^1.0.0-rc.2",
"source-map-support": "^0.4.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.14.0",
"bootstrap": "^3.3.7",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"nodemon": "^1.10.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
}
}