-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "vue-starter",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "vite --port 3000",
"build": "run-p type-check build-only && cp dist/index.html dist/200.html",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy:vercel": "npx vercel",
"deploy:ntl": "npx ntl deploy",
"deploy:surge": "npx surge dist"
},
"dependencies": {
"@vueuse/core": "^10.9.0",
"pinia": "^2.1.7",
"vue": "3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@iconify-json/fluent-emoji": "^1.1.18",
"@iconify-json/ph": "^1.1.12",
"@matijaoe/eslint-config": "^1.2.0",
"@matijaoe/utils": "^0.1.7",
"@types/node": "^20.12.7",
"@unocss/eslint-plugin": "^0.59.1",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^9.0.0",
"npm-run-all": "^4.1.5",
"pnpm": "^8.15.6",
"postcss": "^8.4.38",
"postcss-nesting": "12.1.1",
"typescript": "~5.4.5",
"unocss": "^0.59.1",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"unplugin-vue-router": "^0.8.5",
"vite": "^5.2.8",
"vue-tsc": "^2.0.12"
}
}