-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.78 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.78 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
48
49
50
{
"name": "my-react-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run start-server\" \"npm run start-client\" \"npm run preview\"",
"generate": "zen generate --lite --schema src/zenstack/schema.zmodel",
"start-server": "npx tsx src/server.ts",
"start-client": "wait-on tcp:3100 && vite --port 3000",
"preview": "wait-on tcp:3000 && open http://localhost:3000",
"up": "npm i @zenstackhq/cli@latest @zenstackhq/orm@latest @zenstackhq/server@latest @zenstackhq/tanstack-query@latest @zenstackhq/schema@latest"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.16",
"@tanstack/react-query": "^5.90.6",
"@zenstackhq/orm": "^3.5.6",
"@zenstackhq/schema": "^3.5.6",
"@zenstackhq/server": "^3.5.6",
"@zenstackhq/tanstack-query": "^3.5.6",
"cors": "^2.8.5",
"express": "^5.1.0",
"lorem-ipsum": "^2.0.8",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"sql.js": "^1.13.0",
"tailwindcss": "^4.1.16"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@types/sql.js": "^1.4.9",
"@vitejs/plugin-react": "^5.0.4",
"@zenstackhq/cli": "^3.5.6",
"concurrently": "^9.2.1",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"tsx": "^4.20.6",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7",
"wait-on": "^9.0.1"
}
}