-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.46 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
{
"name": "razer-raders",
"packageManager": "pnpm@11.21.0",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --port 3001",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "node --experimental-strip-types --test test/*.test.ts",
"test:e2e": "./scripts/test-e2e-brief-publication.sh",
"test:e2e:browser": "playwright test",
"test:https-edge": "./scripts/test-https-edge.sh",
"db:migrate": "node --experimental-strip-types src/db/migrate.ts",
"worker": "node --experimental-strip-types src/worker.ts",
"worker:once": "RADAR_WORKER_ONCE=true node --experimental-strip-types src/worker.ts",
"stack:up": "docker compose -p razer-raders-live -f compose.yaml -f compose.live.yaml up -d --no-build",
"stack:refresh": "docker build -t razer-raders-live-app:latest . && docker compose -p razer-raders-live -f compose.yaml -f compose.live.yaml up -d --no-build --force-recreate migrate web worker",
"stack:https": "docker compose -f compose.yaml -f compose.https.yaml up -d --build"
},
"dependencies": {
"next": "latest",
"pg": "8.23.0",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/node": "latest",
"@types/pg": "8.21.0",
"@types/react": "latest",
"@types/react-dom": "latest",
"eslint": "^9.39.5",
"eslint-config-next": "latest",
"typescript": "^6.0.3"
}
}