-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.79 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.79 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "test1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:client": "webpack --env.NODE_ENV=production --config build/webpack.config.client.js",
"build:server": "webpack --env.NODE_ENV=production --config build/webpack.config.server.js",
"clear": "rimraf dist",
"build": "npm run clear && npm run build:client && npm run build:server",
"start": "cross-env NODE_ENV=production node server/server.js",
"dev:client": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.config.client.js",
"dev:server": "cross-env NODE_ENV=development node server/server.js",
"comments": "echo cross env 是在不同系统下对nodejs环境变量设置的一种兼容性方式",
"lint": "eslint --ext .js --ext .jsx client/",
"precommit": "npm run lint"
},
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "3.9.2",
"@material-ui/icons": "3.0.2",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"ejs-compiled-loader-webpack4": "^2.2.0",
"jss": "^10.0.0-alpha.12",
"jss-preset-default": "^10.0.0-alpha.7",
"koa": "^2.6.2",
"koa-json": "^2.0.2",
"koa-mount": "^4.0.0",
"koa-router": "^7.4.0",
"koa-server-http-proxy": "^0.1.0",
"koa-session": "^5.10.1",
"koa-static": "^5.0.0",
"koa-views": "^6.1.5",
"koa2-cors": "^2.0.6",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"prop-types": "^15.6.2",
"query-string": "^6.3.0",
"react": "^16.7.0",
"react-async-bootstrapper": "^2.1.1",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.0",
"react-jss": "^8.6.1",
"react-markdown": "^4.0.6",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"webpack": "^4.29.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "7.x",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"memory-fs": "^0.4.1",
"react-hot-loader": "^4.6.3",
"rimraf": "^2.6.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}