-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 KB
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
{
"name": "vue3-tailwindcss-ts-starter",
"private": true,
"version": "0.0.0",
"author": "Jn Hu",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.vue --ignore-path .eslintignore --fix src",
"format": "prettier . --write",
"typecheck": "vue-tsc --noEmit",
"test:unit": "vite-jest --no-cache"
},
"dependencies": {
"vue": "^3.2.25",
"vue-router": "^4.0.13"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/test-utils": "^2.0.0-rc.21",
"autoprefixer": "^10.4.4",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.7.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.10",
"tailwindcss": "^3.0.24",
"typescript": "^4.5.4",
"vite": "^2.9.5",
"vite-jest": "^0.1.4",
"vite-plugin-eslint": "^1.5.2",
"vue-tsc": "^0.34.7"
}
}