-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 KB
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
{
"name": "boilerplate",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"start-staging": "NODE_ENV=staging node server.js",
"start-production": "NODE_ENV=production node server.js",
"dev": "concurrently \"webpack --config webpack.local.config.js --watch\" \"webpack-dev-server --config webpack.local.config.js\"",
"deploy": "webpack --config webpack.production.config.js"
},
"author": "Liam McCabe",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.2",
"mongoose": "^4.9.10",
"nodemon": "^1.11.0"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"concurrently": "^3.4.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.2",
"postcss-loader": "^2.0.5",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-dev-server": "^2.4.5"
}
}