This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
{
"name": "pro-mern-stack",
"version": "1.0.0",
"description": "Pro MERN Stack",
"main": "index.js",
"scripts": {
"start": "nodemon -w dist dist/server.js",
"compile-server": "babel server --presets es2015-node4 --out-dir dist --source-maps",
"watch-server": "babel server --presets es2015-node4 --out-dir dist --source-maps --watch",
"start-hook": "nodemon -w server 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",
"mongodb": "^2.2.6",
"source-map-support": "^0.4.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-loader": "^6.4.1",
"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",
"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",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.7.0",
"webpack": "^3.1.11",
"webpack-dev-server": "^1.16.5",
"whatwg-fetch": "^1.0.0"
}
}