-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 KB
/
package.json
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
{
"name": "simple-sync-engine",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "pnpm db:create:dev && astro dev",
"db:create:dev": "tsx --env-file=.env.dev scripts/create-server-db.ts",
"db:create:prod": "tsx --env-file=.env.prod scripts/create-server-db.ts",
"build": "astro build",
"preview": "pnpm db:create:dev && tsx --env-file=.env.dev production.ts",
"start": "pnpm db:create:prod && tsx --env-file=.env.prod production.ts",
"astro": "astro"
},
"dependencies": {
"@astrojs/node": "^9.1.2",
"@astrojs/react": "^4.2.1",
"@remixicon/react": "^4.6.0",
"@tailwindcss/vite": "^4.0.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"astro": "^5.4.1",
"better-sqlite3": "^11.8.1",
"express": "^4.21.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sql-template-strings": "^2.2.2",
"sqlocal": "^0.14.0",
"tailwindcss": "^4.0.9",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.0",
"tsx": "^4.19.3"
}
}