-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.69 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
{
"name": "biocard_generator",
"description": "一个简易的ingress biocard 制作项目",
"version": "0.0.1",
"private": true,
"devDependencies": {
"@material-ui/core": "^3.9.2",
"autod": "^3.0.1",
"autod-egg": "^1.0.0",
"babel-core": "^6.26.0",
"babel-loader": "7",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"classnames": "^2.2.6",
"css-loader": "^2.1.0",
"decko": "^1.2.0",
"egg": "^2.19.0",
"egg-bin": "^4.13.0",
"egg-ci": "^1.6.0",
"egg-development-proxyagent": "^1.0.0",
"egg-development-proxyworker": "^1.1.1",
"egg-mock": "^3.7.0",
"egg-view-nunjucks": "^2.1.2",
"egg-view-pug": "^1.0.0",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-egg": "^7.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"file-loader": "^3.0.1",
"glob": "^7.1.2",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.4.0",
"immutable": "^4.0.0-rc.12",
"less": "^3.8.1",
"less-loader": "^4.0.5",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"mocha": "10.2.0",
"moment": "^2.22.2",
"pre-commit": "^1.2.2",
"react": "^16.4.2",
"react-color": "^2.14.1",
"react-cropper": "^1.0.1",
"react-dom": "^16.4.2",
"react-redux": "^6.0.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.4.0-beta.8",
"react-router-redux": "^4.0.8",
"redux": "^4.0.1",
"save-svg-as-png": "^1.4.6",
"style-loader": "^0.23.1",
"unit.js": "2.1.0",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.2.1",
"webstorm-disable-index": "^1.2.0"
},
"scripts": {
"start": "node index.js",
"dev": "egg-bin dev",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint --ext js,jsx ./client",
"ci": "npm run lint && npm run cov",
"autod": "autod",
"build:dev": "webpack --config ./webpack.config.dev.js",
"build:pages": "webpack --config ./webpack.config.pages.js",
"build:prod": "webpack --config webpack.config.prod.js",
"pre-commit": [
"lint"
],
"docker-build": "docker-compose up -d"
},
"dependencies": {
"axios": "^0.18.0"
}
}