-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.48 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "node-pcon",
"version": "1.0.0",
"description": "Stocks app",
"main": "server",
"engines": {
"node": "8.1.2"
},
"scripts": {
"start": "node server",
"start-err": "node server --error_demo_mode",
"test": "npm run test-server && npm run test-client",
"test-server": "mocha --compilers js:babel-core/register server/test",
"test-client": "mocha --compilers js:babel-core/register client/**/*.spec.js",
"start-prod": "npm run build && node server --production",
"heroku-postbuild": "npm run build",
"prebuild": "rimraf dist",
"build": "webpack --config config/webpack.config.prod.js -p",
"lint": "eslint .",
"deploy": "git push heroku master",
"publish": "git push origin master"
},
"devDependencies": {
"enzyme": "^2.9.1",
"eslint": "^4.0.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-config-google": "^0.8.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"react-test-renderer": "^15.6.1",
"redux-devtools-extension": "^2.13.2",
"eslint-plugin-mocha": "^4.11.0",
"chai": "^4.1.1",
"mocha": "^3.4.2"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"express": "^4.15.3",
"jsdom": "^11.1.0",
"koa-webpack-middleware": "^1.0.7",
"webpack": "^3.3.0",
"babel-polyfill": "^6.23.0",
"config": "^1.26.1",
"fs-extra": "^3.0.1",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-convert": "^1.2.0",
"koa-favicon": "^2.0.0",
"koa-logger": "^3.0.0",
"koa-router": "^7.2.0",
"koa-send": "^4.1.0",
"koa-static": "^3.0.0",
"lodash": "^4.17.4",
"material-ui": "^0.19.0",
"normalizr": "^3.2.3",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-flexbox-grid": "^1.1.4",
"react-hot-loader": "^1.3.1",
"react-redux": "^4.4.8",
"react-router": "^3.0.5",
"redux": "^3.7.2",
"redux-logger": "^2.10.2",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"rimraf": "^2.6.1",
"styled-components": "^2.1.2",
"yargs": "^8.0.2"
}
}