-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.4 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
{
"private": true,
"workspaces": [
"packages/*",
"plugins/*"
],
"scripts": {
"build": "yarn workspace @diagram-editor/shared run build && yarn workspaces run build",
"format": "prettier \"**/*\" --ignore-unknown --write --ignore-path .gitignore",
"lint": "eslint --fix \"{packages,plugins}/**/*.{ts,tsx,vue}\" --ignore-path .gitignore",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xunmi1/diagram-editor.git"
},
"author": "xunmi <[email protected]>",
"license": "AGPL-3.0",
"dependencies": {
"@antv/x6": "^1.24.5",
"@icon-park/svg": "^1.3.3",
"ant-design-vue": "^2.2.2",
"mitt": "^3.0.0",
"vue": "^3.1.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"@vitejs/plugin-vue": "^1.2.5",
"@vitejs/plugin-vue-jsx": "^1.1.6",
"@vue/compiler-sfc": "^3.1.5",
"@xunmi/prettier-config": "^1.0.2",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.13.0",
"husky": "^7.0.1",
"less": "^4.1.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.53.2",
"typescript": "^4.3.5",
"vite": "^2.4.2"
},
"prettier": "@xunmi/prettier-config"
}