-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"packageManager": "pnpm@9.12.0",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fmt": "prettier . --write",
"typegen": "openapi-typescript ./openapi.json -o ./openapi-types.ts",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,ts,vue}": "prettier --write",
"*": "eslint --fix"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@nuxt/ui": "^2.20.0",
"@vueuse/core": "^12.5.0",
"chart.js": "^4.4.6",
"date-fns": "^4.1.0",
"nuxt": "^3.13.2",
"radash": "^12.1.0",
"steamid": "^2.1.0",
"uuid": "^11.0.5",
"vlpt": "^0.0.1",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@nuxt/eslint": "^0.6.1",
"@nuxt/fonts": "^0.10.2",
"@nuxtjs/i18n": "^8.5.5",
"@nuxtjs/tailwindcss": "^6.12.2",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"openapi-typescript": "^7.4.2",
"prettier": "3.3.3",
"typescript": "^5.6.3"
}
}