-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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": "cs2kz-dashboard",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"prepare": "husky",
"typegen": "openapi-typescript ./openapi.json -o ./openapi-types.ts"
},
"lint-staged": {
"*": "prettier . --write",
"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,astro,svelte}": "oxlint"
},
"dependencies": {
"@vueuse/core": "^10.9.0",
"@vueuse/integrations": "^10.9.0",
"axios": "^1.6.3",
"date-fns": "^2.30.0",
"lodash-es": "^4.17.21",
"pinia": "^2.2.4",
"steamid": "^2.0.0",
"universal-cookie": "^6.1.3",
"vue": "^3.4.21",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@types/steamid": "^2.0.3",
"@vitejs/plugin-vue": "^4.5.2",
"autoprefixer": "^10.4.16",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"naive-ui": "^2.36.0",
"openapi-typescript": "^7.5.2",
"oxlint": "^0.2.15",
"postcss": "^8.4.32",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.7",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vue-tsc": "^1.8.25"
}
}