-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.2 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
{
"name": "@gbl-uzh/monorepo",
"description": "Game-Based Learning at the University of Zurich",
"keywords": [
"game-based learning",
"gamification",
"teaching",
"university"
],
"version": "0.4.16",
"repository": "uzh-bf/gbl-uzh.git",
"homepage": "https://www.gbl.uzh.ch",
"maintainers": [
"Roland Schlaefli <[email protected]>",
"Benjamin Wilding <[email protected]>",
"Anja Zgraggen <[email protected]>",
"Jakob Jakob <[email protected]>"
],
"contributors": [
"Julius Schlapbach <[email protected]>",
"Alex Scheitlin <[email protected]>",
"Moritz Eck <[email protected]>",
"Nik Zaugg <[email protected]>",
"David Schmocker <[email protected]>",
"Johann Gandolfo <[email protected]>",
"Andrin Rehmann <[email protected]>"
],
"devDependencies": {
"nodemon": "^2.0.16",
"standard-version": "~9.5.0",
"syncpack": "~13.0.0",
"turbo": "~2.2.3"
},
"scripts": {
"build": "turbo run build",
"dev": "nodemon -w packages/platform/public --ext graphql --exec turbo run dev",
"dev-web": "turbo run dev-web",
"format": "turbo run format",
"prisma:setup": "pnpm run --filter @gbl-uzh/demo-game prisma:setup",
"publish": "turbo run publish",
"release": "standard-version --no-verify",
"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",
"syncpack:format": "syncpack format",
"syncpack:lint": "syncpack lint",
"syncpack:mismatches": "syncpack list-mismatches",
"syncpack:mismatches:fix": "syncpack fix-mismatches",
"syncpack:update": "syncpack update"
},
"engines": {
"node": "=20"
},
"volta": {
"node": "20.18.0",
"pnpm": "9.12.3"
},
"packageManager": "[email protected]"
}