-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "hello-vue3",
"version": "0.0.0",
"description": "",
"author": "",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --mode dev --host",
"dev:test": "vite --mode test --host",
"dev:prod": "vite --mode prod --host",
"build": "vue-tsc --noEmit && vite --mode prod build",
"build:dev": "vue-tsc --noEmit && vite --mode dev build",
"build:test": "vue-tsc --noEmit && vite --mode test build",
"preview": "vite preview --host",
"lint": "eslint src",
"format": "prettier --write src",
"mirror:get": "npm config get registry",
"mirror:set": "npm config set registry https://registry.npmmirror.com",
"mirror:rm": "npm config rm registry",
"backup": "git add . && git commit -m \"chore: backup\" && git push",
"up": "npx npm-check-updates -u",
"prepare": "husky install"
},
"dependencies": {
"@bassist/progress": "^0.2.2",
"@bassist/utils": "^0.13.0",
"daisyui": "^3.9.4",
"dayjs": "^1.11.10",
"driver.js": "^1.3.1",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"unocss-preset-daisy": "^7.0.0",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@babel/types": "^7.23.0",
"@bassist/eslint": "^0.5.0",
"@bassist/tsconfig": "^0.1.1",
"@bassist/uno": "^0.1.3",
"@types/node": "^20.8.0",
"@unocss/preset-wind": "^0.58.3",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue": "^4.3.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"eslint": "^8.50.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^14.0.1",
"naive-ui": "^2.37.3",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"unocss": "^0.56.5",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.4.9",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-html": "^3.2.0",
"vue-tsc": "^1.8.15"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}