-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.18 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
98
99
100
{
"name": "cqut-auth",
"private": true,
"version": "1.2.0",
"type": "module",
"packageManager": "pnpm@10.32.1",
"scripts": {
"build": "pnpm build:ui && pnpm build:server",
"build:server": "tsc -p tsconfig.build.json",
"build:ui": "vite build --config web/vite.config.ts",
"check:env-source": "node scripts/check-single-env-source.mjs",
"dev": "concurrently -k \"pnpm dev:server\" \"pnpm dev:ui\"",
"dev:server": "tsx watch --env-file=deploy/.env src/main.ts",
"dev:ui": "vite build --watch --config web/vite.config.ts",
"dev:oidc": "tsx watch --env-file=deploy/.env src/main.ts",
"docker:build": "docker build -t cqut-auth-oidc .",
"docker:up": "docker compose -f deploy/docker-compose.yml up -d --build",
"docker:down": "docker compose -f deploy/docker-compose.yml down",
"docker:up:prod-small": "docker compose -f deploy/docker-compose.prod-small.yml up -d --build",
"init-env": "node scripts/init-env.mjs",
"init-env:stdout": "node scripts/init-env.mjs --stdout",
"lint": "pnpm run check:env-source && tsc -p tsconfig.json --noEmit",
"test": "pnpm test:server && pnpm test:ui",
"test:server": "tsx --test test/**/*.test.ts src/**/*.test.ts",
"test:ui": "vitest run --config web/vitest.config.ts",
"seed:client": "tsx src/scripts/seed-oidc-client.ts",
"seed:key": "tsx src/scripts/seed-oidc-signing-key.ts",
"docs:dev": "pnpm --filter cqut-auth-docs dev",
"docs:build": "pnpm --filter cqut-auth-docs build",
"docs:preview": "pnpm --filter cqut-auth-docs preview",
"format": "prettier --write ."
},
"pnpm": {
"supportedArchitectures": {
"os": [
"current",
"linux"
],
"cpu": [
"current",
"arm64",
"x64"
],
"libc": [
"current",
"musl"
]
},
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"lodash": "^4.18.0",
"path-to-regexp": "^8.4.0",
"chokidar": "^3.6.0"
}
},
"dependencies": {
"@ant-design/icons": "^5.6.1",
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@cqut-openproject/cas-sdk": "github:CQUT-OpenProject/CAS-SDK#1.0.0",
"@refinedev/antd": "^6.0.3",
"@refinedev/core": "^5.0.12",
"@refinedev/react-router": "^2.0.4",
"@tanstack/react-query": "^5.101.2",
"antd": "^5.29.3",
"axios": "^1.18.1",
"axios-cookiejar-support": "^6.0.4",
"dayjs": "^1.11.21",
"express": "^5.1.0",
"ioredis": "^5.8.1",
"jose": "^6.2.2",
"nodemailer": "^9.0.3",
"oidc-provider": "^9.7.1",
"pg": "^8.16.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router": "^8.3.0",
"resend": "^6.10.0",
"tough-cookie": "^5.1.2"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/express": "^5.0.3",
"@types/node": "^24.6.0",
"@types/nodemailer": "^8.0.1",
"@types/pg": "^8.15.5",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@types/supertest": "^6.0.3",
"concurrently": "^9.2.1",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"tsx": "4.20.6",
"typescript": "^7.0.2",
"vite": "^7.1.9",
"vitest": "^3.2.4"
}
}