-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (53 loc) · 1.62 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "if [[ ${NODE_ENV} == \"production\" ]]; then npm run start:prod; else npm run start:dev; fi",
"start:prod": "NODE_ENV=production npm run build && NODE_ENV=production npm run start:server",
"start:dev": "npm run start:server",
"start:server": "babel-node index.js",
"build": "webpack -p --progress --colors",
"lint": "eslint .",
"test": "jest --config jest.config.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.16.0",
"compression": "^1.6.2",
"express": "^4.14.0",
"isomorphic-fetch": "^2.2.1",
"mobx": "3.1.0",
"mobx-react": "^4.0.3",
"morgan": "^1.7.0",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-router": "3.0.2",
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.3.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"eslint": "3.16.1",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "^6.7.1",
"jest": "^19.0.2",
"mobx-react-devtools": "^4.2.10",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.4.2",
"webpack": "2.2.1",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2",
"webpack-manifest-plugin": "^1.1.0"
},
"devDependencies": {
}
}