-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.05 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
{
"name": "qq-charts-tools",
"scripts": {
"runel:dev": "cross-env NODE_ENV=development electron ./",
"runel:pro": "cross-env NODE_ENV=production electron ./",
"dll": "milktea dll",
"start": "npm run clean:build && cross-env NODE_ENV=development milktea start",
"build": "npm run clean:build && cross-env NODE_ENV=production milktea build",
"clean:build": "rimraf ./dist",
"npm:i": "npm install --production",
"yarn:i": "yarn install --production=true --pure-lockfile",
"eslint": "eslint ./src --fix",
"case-check": "case-check --dir=\"./src\" --css",
"update": "milktea update"
},
"main": "./bin/main.js",
"dependencies": {
"electron": "^9.1.0",
"fs-extra": "^8.1.0",
"node-schedule": "^1.3.2",
"nunjucks": "^3.2.0"
},
"devDependencies": {
"@48/modian-query-sign": "github:duan602728596/modian-query-sign",
"@sweet-milktea/milktea": "^0.6.0",
"@sweet-milktea/milktea-cli": "^0.6.0",
"@sweet-milktea/util-tools": "^0.5.0",
"antd": "^3.23.5",
"antd-schema-form": "^3.0.1",
"babel-eslint": "^10.0.3",
"babel-plugin-import": "^1.12.1",
"babel-plugin-import-components-style": "^0.1.0",
"classnames": "^2.2.6",
"commitizen": "^4.0.3",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^3.0.2",
"echarts": "^4.3.0",
"es-module-path-case-check": "^1.4.0",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.8",
"immutable": "^4.0.0-rc.12",
"lint-staged": "^9.4.1",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"rimraf": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx}": "eslint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}