forked from antvis/AVA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.48 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
{
"name": "root",
"scripts": {
"start": "webpack-dev-server --port 8881",
"site:start": "cd ./packages/ava-site && npm run start",
"build": "lerna run build",
"test": "jest",
"coverage": "jest --coverage",
"test-live": "cross-env DEBUG_MODE=1 jest --watch ./packages/chart-advisor/",
"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",
"postinstall": "npm run boot"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"author": "XTech",
"devDependencies": {
"@antv/g2": "^4.0.15",
"@antv/g2plot": "^2.0.9",
"@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/lodash": "^4.14.165",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"antd": "^4.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.1",
"cross-env": "^7.0.2",
"css-loader": "^3.2.0",
"cz-conventional-changelog": "^3.0.2",
"electron": "^11.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",
"jest-electron": "^0.1.11",
"jest-extended": "^0.11.5",
"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",
"vega": "^5.15.0",
"vega-lite": "^4.15.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"@antv/thumbnails": "^0.2.1-alpha.0",
"lodash": "^4.17.20",
"react-json-view": "^1.19.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}