-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.84 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "srtl-manager",
"version": "0.1.2",
"private": true,
"license": "MIT",
"homepage": "https://github.com/ramphex/SRTL-Manager#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ramphex/SRTL-Manager.git"
},
"bugs": {
"url": "https://github.com/ramphex/SRTL-Manager/issues"
},
"engines": {
"node": ">=24 <25"
},
"type": "module",
"scripts": {
"dev": "concurrently -k -n api,web,worker -c cyan,green,magenta \"SRTL_HOST=127.0.0.1 SRTL_PORT=3009 SRTL_WEB_PORT=5178 tsx watch src/server/index.ts\" \"SRTL_API_TARGET=http://127.0.0.1:3009 SRTL_WEB_PORT=5178 vite --host 0.0.0.0 --strictPort\" \"SRTL_WORKER_ID=dev-worker tsx watch src/server/worker.ts\"",
"dev:server": "npm run dev",
"dev:api": "SRTL_HOST=127.0.0.1 SRTL_PORT=3009 SRTL_WEB_PORT=5178 tsx watch src/server/index.ts",
"dev:web": "SRTL_API_TARGET=http://127.0.0.1:3009 SRTL_WEB_PORT=5178 vite --host 0.0.0.0 --strictPort",
"dev:worker": "SRTL_WORKER_ID=dev-worker tsx watch src/server/worker.ts",
"build": "node scripts/build.mjs",
"sync:server": "bash scripts/dev-sync.sh",
"start": "npm run start:api",
"start:api": "NODE_ENV=production node dist/server/index.js",
"start:worker": "NODE_ENV=production node dist/server/worker.js",
"start:migrate": "NODE_ENV=production node dist/server/migrate.js",
"lint": "eslint .",
"check": "npm run typecheck && npm run lint && npm test",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"test:watch": "vitest"
},
"dependencies": {
"@fastify/compress": "^9.1.0",
"@fastify/cookie": "^11.1.2",
"@fastify/cors": "^11.3.0",
"@fastify/helmet": "^13.1.0",
"@fastify/rate-limit": "^11.1.0",
"@fastify/static": "^10.1.2",
"@fastify/swagger": "^9.8.1",
"@fastify/swagger-ui": "^6.1.0",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-router": "^1.170.18",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"fastify": "^5.10.0",
"lucide-react": "^1.26.0",
"pg": "^8.22.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.0",
"@types/node": "^24.0.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"concurrently": "^10.0.4",
"esbuild": "^0.28.1",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"overrides": {
"@fastify/static": "$@fastify/static",
"concurrently": {
"shell-quote": "1.10.0"
}
}
}