-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "cloudflare-oidc-proxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"pretest": "node --input-type=module -e \"import { copyFileSync, existsSync } from 'node:fs'; const files = [['config/main.example.js', 'config/main.js'], ['config/accounts.example.js', 'config/accounts.js']]; for (const [src, dest] of files) { if (!existsSync(dest) && existsSync(src)) copyFileSync(src, dest); }\"",
"test": "vitest run"
},
"author": "",
"type": "module",
"license": "ISC",
"dependencies": {
"cookie": "^1.0.1",
"desm": "^1.3.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.10",
"express": "^4.22.1",
"helmet": "^7.0.0",
"jose": "^4.15.5",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"lodash": "^4.18.1",
"node-jose": "^2.2.0",
"oidc-provider": "^9.4.0"
},
"volta": {
"node": "22.14.0"
},
"devDependencies": {
"nock": "^14.0.12",
"supertest": "^7.2.2",
"vitest": "^4.1.4"
}
}