-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.38 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
{
"name": "vue3-ts.template",
"version": "1.0.0",
"description": "Template for Vue3, TS, ESLint + Prettier",
"repository": "[email protected]:TessavWalstijn/vue3-ts.template.git",
"author": "TessavWalstijn <[email protected]>",
"license": "GPL-3.0",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "prettier --check . && eslint \"src/**/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}\"",
"lint:fix": "yarn lint:format && yarn lint:es-fix",
"lint:es-fix": "eslint --fix \"src/**/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}\"",
"lint:format": "prettier --ignore-path .gitignore --write \"src/**/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}\""
},
"dependencies": {
"typescript": "5.5.4",
"vue": "^3.4.33",
"vue-tsc": "^2.0.28"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-vue": "^5.1.0",
"@vue/eslint-config-typescript": "^13.0.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.8.0",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"vite": "^5.3.4",
"vue-tsc-eslint-hook": "^1.8.27"
}
}