-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 KB
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
{
"private": true,
"type": "module",
"scripts": {
"script:cleanup": "node clean-project.js && rm -rf node_modules yarn.lock .nuxt .output && yarn cache clean && yarn install && yarn dev",
"dev": "nuxi dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt .",
"format:check": "oxfmt . --check",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"type-check": "vue-tsc --build",
"analyze": "npx nuxi analyze",
"project-info": "npx nuxi info",
"prepare": "husky"
},
"dependencies": {
"@pinia/nuxt": "^0.11.3",
"nuxt": "^4.4.2",
"pinia": "^3.0.4"
},
"devDependencies": {
"@nuxt/devtools": "^4.0.0-alpha.3",
"@nuxt/test-utils": "^4.0.0",
"@pinia/testing": "^1.0.3",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.5.2",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"@vue/test-utils": "^2.4.6",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"sass": "^1.99.0",
"sass-loader": "^16.0.7",
"tailwindcss": "^4.2.2",
"typescript": "6.0.2",
"vite-svg-loader": "^5.1.1",
"vitest": "^4.1.2",
"vue-tsc": "^3.2.6"
},
"engines": {
"node": "24.14.0"
},
"engineStrict": true,
"packageManager": "yarn@4.13.0"
}