-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "vite-boilerplate",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore .",
"test:unit": "jest"
},
"dependencies": {
"axios": "^0.24.0",
"pinia": "^2.0.13",
"vue": "^3.2.33",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vitejs/plugin-vue": "^2.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.17",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"eslint": "^8.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"sass": "^1.47.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"vite": "^2.7.2",
"vite-plugin-eslint": "^1.3.0",
"vue-tsc": "^0.29.8"
},
"resolutions": {
"follow-redirects": "^1.14.8",
"nanoid": "^3.3.3",
"minimist": "^1.2.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix"
}
}