-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:ollama": "tsx tests/ollama-connection-test.ts",
"debug:ollama": "node tests/debug-ollama.js",
"test:unit": "vitest run tests/game-logic.test.ts",
"test:components": "vitest run tests/components.test.ts",
"test:integration": "vitest run tests/integration.test.ts"
},
"dependencies": {
"flowbite": "^3.1.2",
"flowbite-vue": "^0.2.1",
"nuxt": "^4.0.0",
"vue": "^3.5.17",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^22.10.2",
"@vue/test-utils": "^2.4.3",
"@vitest/coverage-v8": "^1.1.0",
"autoprefixer": "^10.4.16",
"dotenv": "^16.4.5",
"jsdom": "^23.0.1",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"tsx": "^4.19.2",
"vitest": "^1.1.0",
"vue-tsc": "^3.0.1"
}
}