-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
98 lines (98 loc) · 4.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"private": true,
"name": "@klicker-uzh/monorepo",
"description": "KlickerUZH instant-class-response system.",
"version": "3.3.0-alpha.17",
"repository": "uzh-bf/klicker-uzh.git",
"homepage": "https://www.klicker.uzh.ch/",
"bugs": "https://github.com/uzh-bf/klicker-uzh/issues",
"license": "AGPL-3.0",
"main": "apps/func/dist/index.js",
"maintainers": [
"Roland Schlaefli <[email protected]>",
"Julius Schlapbach <[email protected]>"
],
"contributors": [
"Alex Scheitlin <[email protected]",
"Pascal Zehnder <[email protected]",
"wuergrob <[email protected]>",
"Jokkis80 <[email protected]>",
"mnmldev <[email protected]>",
"Luca Locher <[email protected]>",
"Maximilian Weber <[email protected]>",
"Jonas Gebel <[email protected]>",
"Florina Vogel <[email protected]>",
"Valentin Meyer <[email protected]>",
"Bulin Shaqiri <[email protected]>"
],
"devDependencies": {
"@prisma/nextjs-monorepo-workaround-plugin": "~6.1.0",
"cross-env": "~7.0.3",
"husky": "~9.1.7",
"lint-staged": "~15.2.10",
"npm-run-all": "~4.1.5",
"prettier": "~3.3.3",
"prettier-plugin-organize-imports": "~4.1.0",
"prettier-plugin-tailwindcss": "~0.6.9",
"standard-version": "~9.5.0",
"syncpack": "~13.0.0",
"turbo": "~2.1.3",
"typescript": "~5.6.3",
"yaml": "~2.6.1"
},
"scripts": {
"//check:app": "turbo run check --parallel --continue",
"build": "turbo run build",
"build:test": "cross-env NODE_ENV=test turbo run build:test --cache-dir=.turbo",
"check": "run-p check:*",
"check:format": "lint-staged",
"check:lint": "turbo run lint --parallel --continue",
"check:syncpack": "syncpack lint",
"dev": "doppler run --config dev -- turbo run dev --concurrency 30",
"dev:cleverreach": "doppler run --config dev_cleverreach -- turbo run dev --concurrency 30",
"dev:docs": "turbo run dev:docs",
"dev:lti": "doppler run --config dev_lti -- turbo run dev:lti",
"dev:offline": "doppler run --config dev -- turbo run dev:offline --concurrency 30",
"dev:prepare-prod": "./util/_prepare_local_prod.sh",
"dev:test": "doppler run --config dev_cypress -- cross-env NODE_ENV=test turbo run dev:test",
"format": "prettier --write . --config .prettierrc.mjs",
"format:check": "prettier --check . --config .prettierrc.mjs",
"lint": "turbo run lint --parallel --continue",
"prepare": "husky",
"prisma:deploy": "pnpm run --filter @klicker-uzh/prisma prisma:deploy",
"prisma:migrate": "pnpm run --filter @klicker-uzh/prisma prisma:migrate",
"prisma:reset": "pnpm run --filter @klicker-uzh/prisma prisma:reset",
"prisma:setup": "pnpm run --filter @klicker-uzh/prisma prisma:setup",
"prisma:setup:yes": "pnpm run --filter @klicker-uzh/prisma prisma:setup:yes",
"prisma:studio": "pnpm run --filter @klicker-uzh/prisma prisma:studio",
"prisma:sync": "./util/sync-schema.sh",
"prune": "turbo prune",
"publish": "turbo run publish",
"release": "standard-version",
"release:alpha": "standard-version --prerelease alpha --no-verify",
"release:alpha:dry": "standard-version --dry-run --prerelease alpha",
"release:beta": "standard-version --prerelease beta --no-verify",
"release:beta:dry": "standard-version --dry-run --prerelease beta",
"release:dry": "standard-version --dry-run",
"release:rc": "standard-version --prerelease rc --no-verify",
"release:rc:dry": "standard-version --dry-run --prerelease rc",
"start": "turbo run start",
"start:test": "cross-env NODE_ENV=test turbo run start:test",
"syncpack:format": "syncpack format",
"syncpack:lint": "syncpack lint",
"syncpack:mismatches": "syncpack list-mismatches",
"syncpack:mismatches:fix": "syncpack fix-mismatches",
"syncpack:update": "syncpack update",
"test": "turbo run test",
"test:run": "turbo run test:run",
"test:watch": "run-p test dev:test"
},
"engines": {
"node": "=20"
},
"volta": {
"node": "20.18.1",
"pnpm": "9.14.3"
},
"packageManager": "[email protected]"
}