-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
79 lines (79 loc) · 2.39 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
70
71
72
73
74
75
76
77
78
79
{
"name": "leaderboardsgg",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"engineStrict": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"generate:api": "node ./scripts/generate-api.js",
"lint:fix": "eslint --fix",
"lint:all": "eslint .",
"lint": "pnpm lint:all",
"lint:prod": "set NODE_ENV=production&& eslint .",
"precommit": "pnpm lint:prod && pnpm test && pnpm prettier:check ",
"prepare": "husky",
"prettier:check": "prettier --check --ignore-path .prettierignore .",
"prettier:fix": "prettier --check --write --ignore-path .prettierignore .",
"preview": "nuxt preview",
"test": "vitest --run",
"test:watch": "vitest --watch"
},
"dependencies": {
"@vueuse/core": "^11.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@nuxt/eslint": "^0.6.1",
"@nuxt/eslint-config": "^0.6.1",
"@nuxt/kit": "^3.13.2",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.4",
"@nuxt/vite-builder": "^3.13.2",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/i18n": "^8.5.5",
"@nuxtjs/tailwindcss": "^6.12.2",
"@opentelemetry/api": "^1.9.0",
"@types/dotenv-safe": "^8.1.6",
"@types/eslint": "^9.6.1",
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.12",
"@vue/test-utils": "^2.4.6",
"dotenv-safe": "^9.1.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-vue": "^9.30.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-typegen": "^0.3.2",
"globals": "^15.11.0",
"happy-dom": "^15.7.4",
"husky": "^9.1.6",
"jiti": "^2.3.3",
"nuxt": "^3.13.2",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"swagger-typescript-api": "^13.0.22",
"tailwindcss": "^3.4.14",
"typescript": "5.4.5",
"unplugin-icons": "^0.20.0",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.10",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^2.1.4",
"vitest-fetch-mock": "^0.4.1",
"vue": "^3.5.12"
}
}