forked from hustcc/charts-perf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "@antv/perf",
"version": "1.0.0",
"scripts": {
"start": "gatsby develop",
"lint": "eslint --ext .ts ./src && prettier --check ./src",
"fix": "eslint --ext .ts ./src --fix && prettier --write ./src",
"lint-staged": "lint-staged",
"build": "rimraf public && npm run clean && gatsby build --prefix-paths && rimraf public/**/*.js.map",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "npm run build && gh-pages -d public"
},
"dependencies": {
"@antv/g2": "^4.1.9",
"@antv/g2plot": "^2.3.10",
"antd": "^4.11.2",
"echarts": "^5.0.1",
"highcharts": "^9.0.0",
"lodash": "^4.17.10",
"miz": "^1.0.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-g2plot": "^0.3.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"gatsby": "^2.31.1",
"gatsby-plugin-antd": "^2.2.0",
"gatsby-plugin-less": "^4.6.0",
"gh-pages": "^3.1.0",
"less": "^4.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}