-
Notifications
You must be signed in to change notification settings - Fork 573
/
package.json
103 lines (103 loc) · 2.63 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "gg-editor",
"version": "3.1.3",
"description": "A visual graph editor based on G6 and React",
"keywords": [
"react",
"graph",
"editor",
"flow",
"mind"
],
"main": "lib/index.js",
"unpkg": "dist/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"start": "npm run docs:start",
"build": "node ./scripts/build.js",
"docs:start": "dumi dev",
"docs:build": "dumi build",
"lint": "eslint --cache --ext .ts,.tsx ./src",
"lint:fix": "npm run lint -- --fix",
"pretty-quick": "pretty-quick",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/alibaba/GGEditor.git"
},
"author": {
"name": "高力",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alibaba/GGEditor/issues"
},
"homepage": "https://github.com/alibaba/GGEditor#readme",
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"@antv/g6": "3.5.2",
"@babel/runtime": "^7.7.6",
"lodash": "^4.17.15"
},
"devDependencies": {
"@antv/g6": "^3.5.0",
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"antd": "^3.24.2",
"babel-plugin-lodash": "^3.3.4",
"conventional-changelog-cli": "^2.0.31",
"cz-conventional-changelog": "^3.0.2",
"dumi": "^1.0.17",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"less": "^3.10.3",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rimraf": "^3.0.0",
"rollup": "^1.24.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.3",
"signale": "^1.4.0",
"tscpaths": "^0.0.9",
"typescript": "^3.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}