-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.36 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
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
{
"name": "@klicker-uzh/backend-docker",
"version": "3.4.0-alpha.64",
"license": "AGPL-3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@envelop/response-cache": "4.0.8",
"@envelop/response-cache-redis": "2.0.8",
"@envelop/sentry": "5.1.1",
"@escape.tech/graphql-armor": "1.7.3",
"@graphql-yoga/plugin-csrf-prevention": "1.5.1",
"@graphql-yoga/plugin-persisted-operations": "1.9.1",
"@graphql-yoga/plugin-response-cache": "1.9.1",
"@graphql-yoga/redis-event-target": "1.0.0",
"@hatchet-dev/typescript-sdk": "1.9.4",
"@klicker-uzh/graphql": "workspace:*",
"@klicker-uzh/hatchet": "workspace:*",
"@klicker-uzh/prisma": "workspace:*",
"@klicker-uzh/types": "workspace:*",
"@klicker-uzh/util": "workspace:*",
"@opentelemetry/exporter-trace-otlp-http": "0.53.0",
"@opentelemetry/instrumentation": "0.53.0",
"@opentelemetry/resources": "1.26.0",
"@opentelemetry/sdk-trace-base": "1.26.0",
"@opentelemetry/sdk-trace-node": "1.26.0",
"@opentelemetry/semantic-conventions": "1.27.0",
"@prisma/adapter-pg": "6.16.1",
"@prisma/extension-optimize": "2.0.1",
"@prisma/instrumentation": "6.14.0",
"@sentry/node": "7.103.0",
"@sentry/tracing": "7.114.0",
"cookie-parser": "1.4.7",
"cors": "2.8.6",
"express": "4.21.2",
"graphql": "16.11.0",
"graphql-ws": "5.16.0",
"graphql-yoga": "3.9.1",
"ioredis": "5.4.1",
"next-auth": "4.24.14",
"ws": "8.18.0"
},
"devDependencies": {
"@cypress/code-coverage": "~3.14.6",
"@istanbuljs/nyc-config-typescript": "~1.0.2",
"@rollup/plugin-node-resolve": "~15.3.1",
"@rollup/plugin-typescript": "~12.1.4",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.23",
"@types/ioredis-mock": "^8.2.7",
"@types/node": "^24.10.1",
"@types/ws": "^8.5.12",
"axios": "~1.16.1",
"cross-env": "~7.0.3",
"dotenv": "~16.4.7",
"eslint": "~9.30.1",
"ioredis-mock": "~8.9.0",
"nodemon": "~3.1.14",
"npm-run-all": "~4.1.5",
"nyc": "~17.1.0",
"prisma": "~6.16.1",
"rollup": "~4.34.9",
"source-map-support": "~0.5.21",
"tsx": "~4.19.4",
"typescript": "~6.0.3"
},
"scripts": {
"build": "cross-env NODE_ENV=production run-s --npm-path pnpm build:ts",
"build:instrument": "nyc instrument --compact=false src instrumented",
"build:test": "run-s --npm-path pnpm build:instrument build:ts",
"build:ts": "rollup -c",
"check": "tsc --noEmit -p tsconfig.check.json",
"dev": "npm-run-all --parallel dev:build dev:run",
"dev:assessment": "pnpm run dev",
"dev:build": "rollup -c --watch",
"dev:infisical": "../../util/_run_with_infisical.sh --env dev pnpm run dev",
"dev:lti": "pnpm run dev",
"dev:offline": "pnpm run dev",
"dev:run": "nodemon -w dist/ -w '../../packages/graphql/dist' --exec 'node -r dotenv/config ./dist/index.js'",
"dev:test": "cross-env NODE_ENV=test pnpm run dev",
"script": "../../util/_run_with_infisical.sh --env dev tsx",
"script:prod": "../../util/_run_with_infisical.sh --env prd tsx",
"start": "node -r dotenv/config dist/index.js",
"start:test": "nyc --silent node -r dotenv/config dist/index.js"
},
"engines": {
"node": "=24"
},
"volta": {
"extends": "../../package.json"
},
"type": "module"
}