forked from antvis/AVA
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "root",
"scripts": {
"start": "webpack-dev-server --port 8881",
"build": "lerna run build",
"test": "jest --coverage",
"lint": "lerna run lint",
"api": "rm -rf temp && lerna run api",
"doc": "rm -rf apis && api-documenter markdown -i ./temp -o ./docs/api",
"boot": "lerna bootstrap",
"deploy-doc": "gh-pages -d docs/api"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"author": "XTech",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.8.7",
"@microsoft/api-documenter": "^7.7.2",
"@microsoft/api-extractor": "^7.7.0",
"@types/jest": "^23.3.12",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.17.0",
"gh-pages": "^2.1.1",
"husky": "^4.2.5",
"jest": "^24.9.0",
"lerna": "^3.15.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"prettier": "^1.17.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"style-loader": "^1.0.1",
"ts-jest": "^24.1.0",
"tslib": "^1.10.0",
"typescript": "^3.2.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"@antv/g2plot": "^1.0.3",
"lerna": "^3.16.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}