-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·82 lines (82 loc) · 2.59 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
{
"name": "react-ssr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:client": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.config.client.js --mode development --hot",
"dev:server": "nodemon server/server.js",
"build:client": "webpack --config build/webpack.config.client.js --mode production",
"build:server": "webpack --config build/webpack.config.server.js --mode production",
"build": "npm run clear && npm run build:client && npm run build:server",
"start": "node server/server.js",
"clear": "rimraf dist"
},
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^3.2.2",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"ejs": "^2.6.1",
"ejs-compiled-loader": "^1.1.0",
"express": "^4.16.4",
"history": "^4.7.2",
"jss": "^9.8.7",
"jss-preset-default": "^4.5.0",
"koa": "^2.5.3",
"koa-router": "^7.4.0",
"memory-fs": "^0.4.1",
"mobx": "^5.5.0",
"mobx-react": "^5.3.1",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-async-bootstrapper": "^2.1.1",
"react-dom": "^16.5.2",
"react-helmet": "^5.2.0",
"react-jss": "^8.6.1",
"react-router-dom": "^4.3.1",
"serialize-javascript": "^1.5.0",
"shortid": "^2.2.13",
"webpack": "^4.20.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "7",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.2.0",
"ejs-loader": "^0.3.1",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"koa-favicon": "^2.0.1",
"koa-proxies": "^0.7.0",
"koa-session": "^5.9.0",
"koa2-static-middleware": "^1.0.3",
"name-all-modules-plugin": "^1.0.1",
"nodemon": "^1.18.4",
"query-string": "^6.2.0",
"react-hot-loader": "^4.3.11",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
}
}