-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
{
"name": "matter-agent",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"worker": "tsx watch worker/index.ts",
"dev:all": "concurrently -n web,worker -c cyan,magenta \"npm:dev\" \"npm:worker\"",
"build": "next build",
"start": "next start -p 3000",
"db:migrate": "prisma migrate dev --name init",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"db:reset": "prisma migrate reset --force",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"lint": "next lint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@tanstack/react-query": "^5.59.0",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"next": "14.2.18",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^2.1.7",
"zod": "^3.23.8",
"zustand": "^5.0.1"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@types/node": "^20.16.10",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"postcss": "^8.4.49",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}