-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.91 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.91 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
{
"name": "tietokilta.fi",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"clean": "turbo run clean --cache-dir=.turbo",
"codegen": "dotenv -- turbo run codegen --cache-dir=.turbo",
"db:clear": "docker compose down -v",
"db:export": "dotenv -- ./scripts/generate_seeding_data.sh",
"db:populate": "dotenv -- ./scripts/import_seeding_data.sh --all",
"db:reset": "pnpm db:clear && pnpm db:start && pnpm db:populate",
"db:start": "docker compose up -d",
"db:stop": "docker compose down",
"dev": "pnpm db:start && dotenv -- turbo run dev --cache-dir=.turbo",
"docker:build:web": "docker build . --tag web-web --build-arg PROJECT=web",
"docker:compose:build": "docker compose -f docker-compose.prod.yml up --build",
"docker:compose:start": "docker compose -f docker-compose.prod.yml up",
"docker:start:web": "docker run -p 3000:3000 web",
"format": "turbo run build --filter=@tietokilta/ui --cache-dir=.turbo && oxfmt --write .",
"format:check": "turbo run build --filter=@tietokilta/ui --cache-dir=.turbo && oxfmt --check .",
"lint": "turbo run lint --cache-dir=.turbo",
"lint:fix": "turbo run lint:fix",
"payload": "dotenv -- pnpm -F web payload",
"start": "dotenv -- turbo run start --cache-dir=.turbo",
"typecheck": "turbo run typecheck --cache-dir=.turbo",
"uploads:clear": "rm -rf apps/web/uploads"
},
"devDependencies": {
"@types/node": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20260401.1",
"dotenv-cli": "^11.0.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"oxlint-tsgolint": "^0.19.0",
"tsx": "^4.21.0",
"turbo": "^2.9.3",
"typescript": "catalog:"
},
"engines": {
"node": "22.22.0"
},
"packageManager": "pnpm@10.16.1",
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"es5-ext",
"esbuild",
"sharp"
]
}
}