-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "vite-vue3-typescript-template",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,vue}\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,vue}\" --quiet",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"pinia": "2.0.33",
"vue": "^3.2.25",
"vue-router": "4"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.3",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/eslint-config-typescript": "^10.0.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.0.1",
"prettier": "^2.6.2",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vue-eslint-parser": "^9.0.2",
"vue-tsc": "^0.34.7"
}
}