-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 3.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"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": "turbo run build --filter=@dotkomonline/* --cache-dir=.turbo",
"build:api": "turbo run build --filter=ow-api",
"build:web": "dotenv -e .env -- turbo run build:prod --filter=@dotkomonline/web",
"build:dashboard": "turbo run build --filter=@dotkomonline/dashboard",
"build:brevduen": "turbo run build --filter=@dotkomonline/brevduen",
"build:rif": "turbo run build --filter=@dotkomonline/rif",
"build:invoicification": "turbo run build --filter=@dotkomonline/invoicification",
"lint": "turbo run lint",
"lint-check": "turbo run lint-check",
"test": "turbo run test",
"test:it": "turbo run test:it",
"dev": "dotenv -e .env -- turbo run dev",
"dev:web": "dotenv -e .env -- turbo run dev --filter=@dotkomonline/rpc --filter=@dotkomonline/web",
"dev:dashboard": "dotenv -e .env -- turbo run dev --filter=@dotkomonline/rpc --filter=@dotkomonline/dashboard",
"dev:ow": "dotenv -e .env -- turbo run dev --filter=@dotkomonline/rpc --filter=@dotkomonline/web --filter=@dotkomonline/dashboard",
"migrate": "dotenv -e .env -- turbo run migrate && cd packages/db && pnpm generate-types",
"migrate-down": "dotenv -e .env -- turbo run migrate -- down && cd packages/db && pnpm generate-types",
"migrate-down-all": "dotenv -e .env -- turbo run migrate -- down-all && cd packages/db && pnpm generate-types",
"migrate-dev": "dotenv -e .env.local -- turbo run migrate -- latest --with-seed && cd packages/db && pnpm generate-types",
"migrate-with-fixtures": "dotenv -e .env -- turbo run migrate -- latest --with-fixtures && cd packages/db && pnpm generate-types",
"migrate-with-sample-data": "dotenv -e .env -- turbo run migrate -- latest --sample-data && cd packages/db && pnpm generate-types",
"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:login:public": "aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws",
"shell": "pnpm --filter=@dotkomonline/shell start"
},
"workspaces": [
"packages/*",
"apps/*"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=20.12.2",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"dotenv-cli": "^7.3.0",
"turbo": "^2.1.3",
"turbo-ignore": "^2.1.3",
"typescript": "^5.4.5"
}
}