forked from zyascend/ZMindMap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.77 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
{
"name": "ZMindMap",
"version": "0.2.3",
"author": "[email protected]",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"report": "vue-cli-service build --report",
"lint": "vue-cli-service lint",
"inspect:prod": "vue-cli-service inspect > output_prod.js --mode production",
"inspect:dev": "vue-cli-service inspect > output_dev.js --mode development",
"stylelint:fix": "stylelint **/*.{vue,css,scss} --fix",
"postinstall": "husky install",
"commitlint": "commitlint --from=master",
"lint:prettier": "npx prettier --write src/"
},
"lint-staged": {
"**/*.{scss}": [
"npm run stylelint:fix",
"git add --force"
]
},
"dependencies": {
"axios": "^0.26.1",
"core-js": "^3.6.5",
"cropperjs": "^1.5.12",
"d3-hierarchy": "^3.0.1",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"element-plus": "^2.1.11",
"js-md5": "^0.7.3",
"nanoid": "^3.3.3",
"pinia": "^2.0.13",
"pinia-plugin-persist": "^1.0.0",
"save-svg-as-png": "^1.4.17",
"socket.io-client": "^4.5.1",
"vue": "^3.2.31",
"vue-qr": "^4.0.6",
"vue-router": "^4.0.0-0",
"xss": "^1.0.11"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@types/js-md5": "^0.4.3",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.5",
"compression-webpack-plugin": "^5.0.2",
"esbuild-loader": "^2.19.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^8.7.1",
"hard-source-webpack-plugin": "^0.13.1",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"node-sass": "^7.0.1",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"speed-measure-webpack-plugin": "^1.5.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.4.0",
"stylelint-config-standard": "^22.0.0",
"svg-sprite-loader": "^6.0.11",
"svgo-loader": "^3.0.0",
"unplugin-auto-import": "^0.7.1",
"unplugin-element-plus": "^0.4.0",
"unplugin-vue-components": "^0.22.4",
"worker-loader": "^3.0.8"
}
}