-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"private": false,
"name": "qk-components",
"version": "1.1.11",
"publishConfig": {
"registry": "http://nexus.qike366.com/repository/qike-components/"
},
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@antv/g6": "^4.4.1",
"@antv/g6-react-node": "^1.4.4",
"@types/cytoscape-popper": "^2.0.0",
"@types/d3": "^7.1.0",
"antd": "^4.17.4",
"cytoscape": "^3.20.0",
"cytoscape-cose-bilkent": "^4.1.0",
"cytoscape-popper": "^2.0.0",
"d3": "^7.2.0",
"echarts": "^5.2.2",
"react": "^17.0.0",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@types/cytoscape": "^3.19.0",
"@umijs/test": "^3.0.5",
"dumi": "^1.0.17",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1",
"yorkie": "^2.0.0"
}
}