-
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.16 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 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
43
44
{
"name": "smart-planner",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx src/server.ts",
"dev:client": "vite",
"build": "vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run tests/integration"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.84.2",
"@earendil-works/pi-coding-agent": "0.84.2",
"@tanstack/react-query": "^5.59.0",
"better-sqlite3": "^11.3.0",
"express": "^5.0.0",
"pino": "^9.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.0",
"@types/node": "^22.7.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^7.2.1",
"@vitejs/plugin-react": "^4.3.1",
"jsdom": "^25.0.1",
"supertest": "^7.0.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vitest": "^2.1.3"
}
}