-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "vuetify-project",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "yarn jest --passWithNoTests",
"lint": "eslint . --fix --ignore-path .gitignore",
"prepare": "husky install"
},
"dependencies": {
"@mdi/font": "7.0.96",
"@types/jest": "^29.5.3",
"@vue-flow/background": "^1.2.0",
"@vue-flow/controls": "^1.0.6",
"@vue-flow/core": "^1.20.0",
"@vue-flow/minimap": "^1.1.1",
"@vue-flow/node-resizer": "^1.3.2",
"axios": "^1.4.0",
"core-js": "^3.29.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"roboto-fontface": "*",
"vue": "^3.2.0",
"vue-command": "^35.1.0",
"vue-cookies": "^1.8.3",
"vue-router": "^4.0.0",
"vuetify": "^3.0.0",
"vuex": "^4.1.0",
"vuex-persistedstate": "^4.1.0",
"webfontloader": "^1.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.0.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.3.0",
"husky": ">=7",
"lint-staged": ">=10",
"sass": "^1.60.0",
"vite": "^4.2.0",
"vite-plugin-vuetify": "^1.0.0"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier -w"
]
}
}