forked from one-ea/Monolith
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "timeamber",
"version": "2.5.0",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "npx concurrently -n server,client -c blue,green \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "npm -w timeamber-client run dev",
"dev:server": "npm -w timeamber-server run dev",
"build": "npm -w timeamber-client run build",
"build:home-snapshot": "node scripts/write-home-snapshot.mjs",
"deploy:server": "npm -w timeamber-server run deploy",
"deploy:client": "node -e \"const {spawnSync}=require('node:child_process'); const wrangler='../server/node_modules/.bin/wrangler'+(process.platform==='win32'?'.cmd':''); const result=spawnSync(wrangler,['pages','deploy','dist','--project-name','timeamber-client','--branch','main','--commit-dirty=true'],{cwd:'client',stdio:'inherit',shell:process.platform==='win32'}); process.exit(result.status ?? 1);\"",
"deploy:cloudflare": "node scripts/deploy-cloudflare.mjs",
"db:reconcile": "npm run db:reconcile:d1:local",
"db:reconcile:local": "npm run db:reconcile:d1:local",
"db:reconcile:d1:local": "node scripts/reconcile-d1-schema.mjs --local",
"db:reconcile:d1:remote": "node scripts/reconcile-d1-schema.mjs --remote",
"db:migrate:local": "npm -w timeamber-server run db:migrate:local",
"db:migrate:remote": "npm -w timeamber-server run db:migrate:remote",
"db:seed:local": "npm -w timeamber-server run db:seed:local",
"db:seed:test-posts:local": "npm -w timeamber-server run db:seed:test-posts:local",
"check": "npm -ws run check",
"lint": "npm -ws run lint"
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"concurrently": "^9.0.0"
},
"optionalDependencies": {
"@esbuild/linux-arm64": "^0.25.12",
"@esbuild/linux-x64": "0.25.12",
"@esbuild/win32-x64": "0.25.12",
"@libsql/linux-arm64-gnu": "^0.5.29",
"@rollup/rollup-linux-arm64-gnu": "^4.60.2",
"@rollup/rollup-linux-x64-gnu": "4.60.2",
"@rollup/rollup-win32-x64-msvc": "4.60.2",
"@swc/core-linux-arm64-gnu": "^1.15.26",
"@swc/core-linux-x64-gnu": "1.15.26",
"@swc/core-win32-x64-msvc": "1.15.26",
"@tailwindcss/oxide-linux-arm64-gnu": "^4.2.2",
"@tailwindcss/oxide-linux-x64-gnu": "4.2.2",
"@tailwindcss/oxide-win32-x64-msvc": "4.2.2",
"lightningcss-linux-arm64-gnu": "^1.32.0",
"lightningcss-linux-x64-gnu": "1.32.0",
"lightningcss-win32-x64-msvc": "1.32.0"
},
"overrides": {
"@babel/plugin-transform-modules-systemjs": "7.29.4",
"dompurify": "3.4.3",
"esbuild": "^0.25.0",
"express-rate-limit": "8.5.2",
"fast-uri": "3.1.2",
"fast-xml-builder": "1.1.7",
"ip-address": "10.2.0",
"serialize-javascript": "^7.0.5"
}
}