-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.9 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"version": "0.1.1",
"private": true,
"scripts": {
"browser": "cross-env NODE_ENV=development WEBPACK_CONFIG=browser_dev webpack-dev-server --open",
"build": "cross-env NODE_ENV=production WEBPACK_CONFIG=browser_prod,server_prod webpack --colors",
"build-analyze": "cross-env BUNDLE_ANALYZER=1 NODE_ENV=production WEBPACK_CONFIG=browser_prod,server_prod webpack --colors",
"build-browser": "cross-env NODE_ENV=production WEBPACK_CONFIG=browser_prod webpack --colors",
"build-run": "npm run build && npm run server",
"build-static": "cross-env NODE_ENV=production WEBPACK_CONFIG=static webpack --colors",
"build-static-run": "npm run build-static && npm run static",
"clean": "rimraf dist",
"lint": "eslint .",
"server": "node dist/server",
"server-dev": "cross-env NODE_ENV=development WEBPACK_CONFIG=server_dev webpack --colors",
"start": "run-p browser server-dev",
"static": "serve -s dist/public",
"test": "jest"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"brotli-webpack-plugin": "^0.4.1",
"chunk-manifest-webpack-plugin": "^1.1.2",
"copy-webpack-plugin": "^4.1.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"cssnano": "^4.0.0-rc.2",
"cssnano-preset-default": "^4.0.0-rc.2",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-compat": "^2.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"graphql-tag": "^2.4.2",
"html-webpack-plugin": "^2.30.1",
"iltorb": "^1.3.10",
"image-webpack-loader": "^3.4.2",
"jest": "^21.2.1",
"less": "^3.0.0-alpha.3",
"less-loader": "^4.0.5",
"node-sass": "^4.5.3",
"node-zopfli": "^2.0.2",
"npm-run-all": "^4.1.1",
"postcss-cssnext": "3.0.2",
"postcss-loader": "^2.0.6",
"postcss-nested": "^2.1.2",
"progress-bar-webpack-plugin": "^1.10.0",
"resolve-url-loader": "^2.1.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"serve": "^6.2.0",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-chunk-hash": "^0.5.0",
"webpack-config": "^7.4.0",
"webpack-dev-server": "^2.9.1",
"webpack-manifest-plugin": "^1.3.2",
"webpack-node-externals": "^1.6.0",
"zopfli-webpack-plugin": "^0.1.0"
},
"dependencies": {
"apollo-local-query": "^0.3.0",
"apollo-server-koa": "^1.1.6",
"boxen": "^1.2.1",
"bulma": "^0.6.0",
"chalk": "^2.1.0",
"classnames": "^2.2.5",
"graphql": "^0.11.7",
"ip": "^1.1.5",
"isomorphic-fetch": "^2.2.1",
"kcors": "^2.2.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-helmet": "^3.2.0",
"koa-router": "^7.2.1",
"koa-send": "^4.1.1",
"koa-sslify": "^2.1.2",
"microseconds": "^0.1.0",
"moment": "^2.19.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-apollo": "^1.4.16",
"react-dom": "^16.0.0",
"react-helmet": "^5.2.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-konami": "^0.5.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"regenerator-runtime": "^0.11.0",
"seamless-immutable": "^7.1.2"
},
"engines": {
"node": ">=7",
"npm": ">=4"
}
}