-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "NodeApp",
"version": "1.0.0",
"description": "NodeJS App",
"main": "index.js",
"scripts": {
"start": "nodemon --inspect --watch server.js server.js",
"dev": "webpack --config webpack.config.dev.js --watch",
"build": "webpack --config webpack.config.dev.js"
},
"repository": {
"type": "git",
"url": "https://github.com/coopermaruyama/express-react-boilerplate.git"
},
"author": "Cooper Maruyama",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.22.0",
"body-parser": "^1.16.0",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"mongoose": "^4.7.6",
"nodemon": "^1.11.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack-node-externals": "^1.5.4",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"json-loader": "^0.5.4",
"webpack": "^2.2.0-rc.3",
"webpack-node-externals": "^1.5.4"
}
}