-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "oidc-mirage",
"license": "MIT",
"version": "0.1.0",
"dependencies": {
"@koa/router": "^13.1.0",
"dotenv": "^16.4.7",
"jose": "^5.9.6",
"koa": "^2.15.3",
"koa-body": "^6.0.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/koa": "^2.15.0",
"@types/koa__router": "^12.0.4",
"@types/node": "^20",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-security": "^3.0.1",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"rollup": "^4.34.6",
"tslib": "^2.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"scripts": {
"compile-only": "tsc --noEmit",
"check-format": "prettier --check --ignore-path ./.gitignore .",
"lint": "eslint src/",
"start": "env NODE_ENV=development ts-node --files src/index.ts",
"watch": "nodemon",
"build": "rm -rf ./dist && rollup -c"
}
}