-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.24 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": "mern-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for mern stack",
"main": "index.js",
"scripts": {
"start": "cross-env BABEL_DISABLE_CACHE=1 NODE_ENV=development nodemon index.js",
"start:prod": "cross-env NODE_ENV=production node index.js",
"start:api": "nodemon api/api.js",
"bs": "npm run clean && npm run build && npm run build:server && npm run start:prod",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build:server": "cross-env NODE_ENV=production webpack --config webpack.config.server.js",
"clean": "rimraf dist",
"lint": "eslint client server || true",
"test": "mocha client/utils/testSetup.js \"client/**/*.test.js\" || true"
},
"author": "Nigel Reoch",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cross-env": "^3.1.3",
"del": "^3.0.0",
"express": "^4.14.0",
"gridfs-stream": "^1.1.1",
"mongoose": "^4.11.11",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.5",
"babel-plugin-webpack-loaders": "^0.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chunk-manifest-webpack-plugin": "^0.1.0",
"css-loader": "^0.25.0",
"enzyme": "^2.5.1",
"eslint": "^3.9.1",
"eslint-plugin-react": "^6.6.0",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^1.0.1",
"jsdom": "^9.8.3",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"postcss-cssnext": "^2.8.0",
"postcss-loader": "^1.1.0",
"react-addons-test-utils": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"redux-devtools": "^3.3.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-externals-plugin": "^1.0.0",
"webpack-hot-middleware": "^2.13.0",
"webpack-manifest-plugin": "^1.1.0"
}
}