-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 914 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 914 Bytes
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
{
"name": "neural-computer",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently -k \"npm:dev:server\" \"npm:dev:client\"",
"dev:client": "vite",
"dev:server": "node server.mjs",
"build": "vite build",
"preview": "vite preview",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"typecheck": "tsc --noEmit",
"validate": "npm run typecheck && npm run build",
"test": "vitest run"
},
"dependencies": {
"@mariozechner/pi-ai": "^0.52.10",
"@tailwindcss/browser": "^4.1.10",
"cors": "^2.8.6",
"express": "^5.2.1",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.10.0",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^9.2.1",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^4.0.18"
}
}