-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 2.23 KB
/
package.json
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
{
"name": "monorepo",
"version": "1.0.0",
"description": "Monoweb is the next-generation web application for Online. This is the monorepo source.",
"keywords": ["online", "ntnu", "student-association"],
"homepage": "https://online.ntnu.no",
"author": "Dotkom <[email protected]> (https://online.ntnu.no)",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/dotkom/monoweb/issues"
},
"repository": "github:dotkom/monoweb",
"license": "MIT",
"private": true,
"scripts": {
"build": "pnpm run -F @dotkomonline/web -F @dotkomonline/dashboard -F @dotkomonline/rpc -F @dotkomonline/invoicification -F @dotkomonline/rif build",
"build:brevduen": "pnpm run -F @dotkomonline/brevduen build",
"build:dashboard": "pnpm run -F @dotkomonline/dashboard build",
"build:invoicification": "pnpm run -F @dotkomonline/invoicification build",
"build:rif": "pnpm run -F @dotkomonline/rif build",
"build:rpc": "pnpm run -F @dotkomonline/rpc build",
"build:web": "pnpm run -F @dotkomonline/web build",
"lint": "pnpm run -r lint",
"lint-check": "turbo run lint-check",
"test": "turbo run test",
"test:it": "turbo run test:it",
"dev": "pnpm -rc -F @dotkomonline/web -F @dotkomonline/dashboard -F @dotkomonline/rpc -F @dotkomonline/invoicification -F @dotkomonline/rif exec doppler run --preserve-env pnpm run dev",
"prisma": "pnpm -F @dotkomonline/db prisma",
"migrate": "pnpm -F @dotkomonline/db migrate",
"generate": "pnpm -F @dotkomonline/db generate",
"migrate-with-fixtures": "pnpm -F @dotkomonline/db migrate-with-fixtures",
"storybook": "turbo run storybook --filter=storybook",
"type-check": "turbo run type-check",
"clean": "turbo run clean",
"docker:login": "aws ecr get-login-password --region eu-north-1 | docker login --username AWS --password-stdin 891459268445.dkr.ecr.eu-north-1.amazonaws.com",
"docker:build": "turbo run docker:build",
"shell": "pnpm --filter=@dotkomonline/shell start"
},
"workspaces": ["packages/*", "apps/*"],
"packageManager": "[email protected]",
"engines": {
"node": ">=20.12.2",
"pnpm": ">=9.15.5"
},
"devDependencies": {
"turbo": "^2.3.4",
"turbo-ignore": "^2.3.4",
"typescript": "^5.8"
}
}