-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 KB
/
package.json
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
{
"name": "bacchus-id",
"version": "0.0.2-dev",
"description": "Identity management service for SNUCSE",
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint '{bootstrap,src,test}/**/*.{js,ts}'",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"start": "yarn rebuild-cache && node dist/src/index.js",
"test": "yarn lint && yarn fmt:check && yarn build && ava --color --verbose",
"rebuild-cache": "node dist/bootstrap/rebuild_group_cache.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bacchus-snu/id.git"
},
"author": "Bacchus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bacchus-snu/id/issues"
},
"type": "module",
"dependencies": {
"@koa/cors": "^5.0.0",
"@phc/format": "^1.0.0",
"argon2": "^0.40.1",
"bunyan": "^1.8.15",
"ioredis": "^5.3.2",
"jose": "^5.2.3",
"koa": "^2.15.2",
"koa-bodyparser": "^4.4.1",
"koa-mount": "^4.0.0",
"koa-router": "^12.0.1",
"moment": "^2.30.1",
"nodemailer": "^6.9.13",
"oidc-provider": "^8.4.5",
"pg": "^8.11.3",
"tweetnacl": "^1.0.3",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/bunyan": "^1.8.11",
"@types/eslint__js": "^8",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-mount": "^4.0.5",
"@types/koa-router": "^7.4.8",
"@types/koa__cors": "^5.0.0",
"@types/node": "^20.11.30",
"@types/nodemailer": "^6.4.14",
"@types/oidc-provider": "^8.4.4",
"@types/pg": "^8.11.4",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"ava": "^6.1.2",
"dprint": "^0.45.0",
"eslint": "^8.57.0",
"supertest": "^6.3.4",
"typescript": "^5.4.3",
"typescript-eslint": "7.3.1"
},
"packageManager": "[email protected]"
}