-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.82 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
{
"name": "setsun.io",
"version": "0.1.0",
"private": true,
"dependencies": {
"history": "^4.6.1",
"koa": "^2.2.0",
"koa-mount": "^3.0.0",
"koa-static": "^3.0.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "next",
"redux": "^3.6.0",
"redux-observable": "^0.14.1",
"rxjs": "5.0.0",
"styled-components": "2.0.0-18"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react-app": "^3.0.0",
"babel-runtime": "6.23.0",
"css-loader": "0.28.1",
"dotenv": "4.0.0",
"eslint": "3.19.0",
"eslint-config-react-app": "^1.0.3",
"eslint-loader": "1.7.1",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "5.0.1",
"eslint-plugin-react": "7.0.1",
"file-loader": "0.11.1",
"flow-bin": "^0.46.0",
"nodemon": "^1.11.0",
"source-map-support": "^0.4.15",
"style-loader": "0.17.0",
"url-loader": "0.5.8",
"webpack": "2.5.1",
"webpack-node-externals": "^1.6.0"
},
"scripts": {
"dev:server": "NODE_ENV=development webpack --config webpack.config.server.js --watch",
"dev:client": "NODE_ENV=development webpack --config webpack.config.client.js --watch",
"dev:start": "NODE_ENV=development nodemon dist/server.js --watch dist/server.js",
"start": "NODE_ENV=production node dist/server.js",
"flow": "flow"
},
"babel": {
"presets": [
"react-app",
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"eslintConfig": {
"extends": "react-app"
}
}