-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "snowcam",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite --host=0.0.0.0",
"build": "vite build",
"eslint": "eslint --fix",
"format": "prettier --write src/",
"preview": "vite preview --host=0.0.0.0",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 0"
},
"dependencies": {
"@bybas/weather-icons": "^2.0.0",
"@owliehq/vue-addtohomescreen": "^2.0.3",
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"hls.js": "^1.5.20",
"ios-pwa-splash": "^1.0.0",
"moment": "^2.30.1",
"query-string": "^9.1.1",
"vue": "^3.5.13"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"tailwindcss": "^4.0.0",
"vite": "^6.0.11",
"vite-plugin-mkcert": "^1.17.6",
"vite-plugin-pwa": "^0.21.1"
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write"
]
}
}