-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) 路 873 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) 路 873 Bytes
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
{
"name": "lukittu",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/KasperiP/lukittu.git"
},
"private": true,
"scripts": {
"dev": "pnpm --filter @lukittu/shared generate && pnpm -r dev",
"format": "prettier --write .",
"db:migrate": "pnpm --filter @lukittu/shared migrate",
"db:deploy": "pnpm --filter @lukittu/shared docker-deploy",
"db:generate": "pnpm --filter @lukittu/shared generate",
"build:web": "pnpm --filter lukittu-web build",
"build:bot": "pnpm --filter lukittu-bot build",
"build:shared": "pnpm --filter @lukittu/shared build",
"build": "pnpm -r build"
},
"devDependencies": {
"prettier": "^3.9.6"
},
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=22",
"pnpm": ">=11"
},
"packageManager": "pnpm@11.0.8"
}