-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "clockwork-town",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "tsx src/server.ts",
"dev": "tsx watch src/server.ts",
"dev:frontend": "vite",
"build:frontend": "vite build",
"ddl": "tsx src/db.ts --ddl",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@graphql-tools/schema": "^10.0.25",
"@tailwindcss/postcss": "^4.1.14",
"@vitejs/plugin-vue": "^6.0.1",
"autoprefixer": "^10.4.21",
"crypto-js": "^4.2.0",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"graphql-yoga": "^5.16.0",
"kuzu": "^0.6.1",
"markdown-it": "^14.1.0",
"pinia": "^3.0.3",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.14",
"vite": "^7.1.9",
"vue": "^3.5.22",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@types/node": "^24.7.1",
"@vitest/ui": "^3.2.4",
"@vue/tsconfig": "^0.8.1",
"happy-dom": "^20.0.0",
"tsx": "^4.16.0",
"typescript": "^5.6.3",
"vitest": "^3.2.4",
"vue-tsc": "^3.1.1"
}
}