This repository has been archived by the owner on Dec 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
74 lines (74 loc) · 2.12 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
{
"name": "vg-editor",
"version": "2.7.2",
"keywords": [
"vue",
"graphics",
"editor",
"tree",
"mind"
],
"description": "A visual graph editor based on G6 and Vue, inspired by GGEditor",
"main": "cjs/index.js",
"module": "es/index.js",
"files": [
"es",
"cjs",
"dist",
"*.md"
],
"scripts": {
"dev": "node build/server.js",
"watch": "webpack --config ./build/webpack.config.dev.js --watch",
"bundle": "node build/bundle.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 ./build/webpack.config.prod.js --progress",
"build:demo": "rimraf ./demo/build && webpack --config ./build/webpack.config.demo.prod.js"
},
"repository": {
"type": "git",
"url": "[email protected]:ChrisShen93/VGEditor.git"
},
"author": {
"name": "ChrisShen93",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/runtime": "^7.6.0",
"@vue/babel-preset-jsx": "^1.1.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-vue-libs": "^4.0.0",
"express": "^4.17.1",
"html-webpack-plugin": "^3.2.0",
"rimraf": "^3.0.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue": "^2.6.10",
"vue-loader": "^15.7.1",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-middleware": "^3.7.1",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@antv/g6": "^2.2.6",
"gg-editor-core": "1.3.4",
"lodash": "^4.17.15"
}
}