-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
package.json
64 lines (64 loc) · 1.83 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
{
"name": "visual-drag-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write \"**/*.{js,vue,json,md}\"",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"ace-builds": "^1.12.3",
"core-js": "^3.8.3",
"echarts": "^5.4.1",
"element-ui": "^2.14.1",
"html-to-image": "^1.9.0",
"mathjs": "^10.5.3",
"nanoid": "^4.0.0",
"vue": "^2.7.14",
"vue-echarts": "^6.5.4",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-airbnb": "^6.0.0",
"chalk": "^4.0.0",
"compression-webpack-plugin": "^6.1.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^8.0.3",
"eslint-plugin-vuejs-accessibility": "^1.1.0",
"husky": "^8.0.1",
"lint-staged": "^11.0.0",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.4",
"prettier": "npm:@btmills/prettier@^3.3.3",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"stylelint": "^14.9.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^5.0.0",
"vue-template-compiler": "^2.6.14"
}
}