-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.73 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.73 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "react-nodejs-boilerplate",
"version": "1.0.0",
"description": "Lightweight MERN stack boilerplate",
"main": "./app.js",
"homepage": "https://github.com/balnix/react-nodejs-boilerplate",
"author": "Albert Balinski, Bartlomiej Rutkowski",
"license": "MIT",
"scripts": {
"prestartDev": "eslint server",
"build": "NODE_ENV=production webpack --config ./webpack.prod.config.js --progress --colors; babel server -d dist",
"start": "nodemon --exec npm run startDev",
"startDev": "cross-env BABEL_DISABLE_CACHE=1 NODE_ENV=development babel-node server/app.js ",
"startProd": "cross-env NODE_ENV=production node dist/app.js",
"postinstall": "NODE_ENV=production webpack --config ./webpack.prod.config.js --progress --colors",
"lint": "eslint client server",
"testFront": "jest client NODE_ENV=test",
"testBack": "PORT=54321 MONGO_URL=mongodb://localhost:27017/test-db ./node_modules/mocha/bin/mocha server --compilers js:babel-register --recursive ",
"test": "PORT=54321 MONGO_URL=mongodb://localhost:27017/test-db npm run testFront; npm run testBack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balnix/react-nodejs-boilerplate"
},
"keywords": [
"react",
"express",
"webpack",
"es2015",
"javascript"
],
"dependencies": {
"axios": "^0.14.0",
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-3": "^6.17.0",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"cross-env": "^3.1.3",
"css-loader": "^0.23.1",
"express": "^4.13.4",
"file-loader": "^0.8.5",
"mongoose": "^4.6.5",
"node-sass": "^3.10.1",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-keydown": "^1.6.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.2.1",
"redux-thunk": "^2.1.0",
"sass-loader": "^3.2.0",
"shortid": "^2.2.6",
"should": "^11.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.6",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"devDependencies": {
"babel-jest": "^16.0.0",
"babel-polyfill": "^6.16.0",
"babel-register": "^6.18.0",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.3.0",
"jest": "^16.0.2",
"mocha": "^3.1.2"
}
}