forked from alibaba/GGEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.67 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
{
"name": "gg-editor",
"version": "2.0.4",
"description": "A visual graph editor based on G6 and React",
"keywords": [
"react",
"graphics",
"editor",
"tree",
"mind"
],
"main": "cjs/index.js",
"module": "es/index.js",
"types": "typings/index.d.ts",
"files": [
"src",
"es",
"cjs",
"dist",
"demo",
"*.md",
"typings"
],
"scripts": {
"start": "webpack-dev-server --config ./tools/webpack.config.demo.dev.js --open",
"watch": "webpack --config ./tools/webpack.config.dev.js --watch",
"build": "node ./scripts/build.js",
"build:es": "rimraf ./es && babel ./src -d ./es",
"build:cjs": "rimraf ./cjs && babel ./src -d ./cjs --plugins @babel/plugin-transform-modules-commonjs",
"build:umd": "rimraf ./dist && webpack --config ./tools/webpack.config.prod.js",
"build:demo": "rimraf ./demo/dist && webpack --config ./tools/webpack.config.demo.prod.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gaoli/GGEditor.git"
},
"author": {
"name": "高力",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gaoli/GGEditor/issues"
},
"homepage": "https://github.com/gaoli/GGEditor#readme",
"peerDependencies": {
"react": "^16.3.0"
},
"dependencies": {
"@antv/g6": "^2.2.6",
"core-js": "^3.0.0",
"gg-editor-core": "1.3.4",
"lodash": "^4.17.10"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"rimraf": "^2.6.2",
"style-loader": "^0.23.1",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}