-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.55 KB
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
{
"name": "@klicker-uzh/olat-api",
"version": "3.3.0-alpha.57",
"license": "AGPL-3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@klicker-uzh/prisma": "workspace:*",
"@klicker-uzh/types": "workspace:*",
"@prisma/adapter-pg": "6.16.1",
"@scalar/express-api-reference": "0.8.7",
"dayjs": "1.11.20",
"express": "4.21.2",
"express-rate-limit": "7.5.0",
"graphql": "16.11.0",
"remeda": "2.15.0",
"uuid": "10.0.0"
},
"devDependencies": {
"@klicker-uzh/util": "workspace:*",
"@redocly/cli": "~1.34.4",
"@rollup/plugin-node-resolve": "~15.3.1",
"@rollup/plugin-typescript": "~12.1.4",
"@types/express": "^4.17.23",
"@types/node": "^24.10.1",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"nodemon": "~3.1.14",
"rollup": "~4.34.9",
"supertest": "~7.1.1",
"tsx": "~4.19.4",
"typescript": "~6.0.3",
"vitest": "~3.2.4"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"build:test": "pnpm run build",
"check": "tsc --noEmit",
"dev": "pnpm dev:ts",
"dev:infisical": "../../util/_run_with_infisical.sh --env dev pnpm run dev",
"dev:offline": "pnpm run dev",
"dev:ts": "cross-env NODE_ENV=development tsx --watch src/index.ts",
"start": "node dist/index.js",
"test": "bash run-tests.sh",
"validate:openapi": "redocly lint static/openapi.yaml"
},
"engines": {
"node": "=24"
},
"volta": {
"extends": "../../package.json"
},
"type": "module"
}