-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
executable file
·46 lines (46 loc) · 1.31 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
{
"name": "MERN-boilerplate",
"version": "1.0.0",
"description": "MERN stack project boilerplate",
"author": "Eugene Cheung",
"repository": {
"type": "git",
"url": "git+https://github.com/arkon/MERN-boilerplate.git"
},
"license": "MIT",
"private": true,
"scripts": {
"start": "webpack -p --progress --profile --colors && node server",
"start:dev": "node server"
},
"dependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.2",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.2.1",
"css-loader": "^0.28.7",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"mongoose": "^4.11.7",
"node-sass": "^4.5.3",
"nodemon": "^1.12.1",
"postcss-loader": "^2.0.8",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.2.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0",
"webpack-merge": "^4.1.1",
"whatwg-fetch": "^2.0.3"
}
}