-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "typeauthd",
"version": "1.0.5",
"description": "Authorization service for multiple purposes",
"scripts": {
"test": "jest",
"dev": "NODE_ENV=development ts-node ./src/index.ts",
"debug": "NODE_ENV=debug ts-node ./src/index.ts",
"build": "tsc"
},
"keywords": [
"typeauthd"
],
"author": "JerryImMouse",
"license": "MIT",
"dependencies": {
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.0",
"@types/node": "^22.9.1",
"@types/pg": "^8.11.10",
"@types/sqlite3": "^3.1.11",
"@types/winston": "^2.4.4",
"cookie-parser": "^1.4.7",
"express": "^4.21.1",
"http2-express-bridge": "^1.0.7",
"jsonwebtoken": "^9.0.2",
"ncp": "^2.0.0",
"pg": "^8.13.1",
"pug": "^3.0.3",
"send": ">=0.19.0",
"sqlite3": "^6.0.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.7",
"ts-node": "^10.9.2"
},
"overrides": {
"http2-express-bridge": {
"send": ">=0.19.0"
}
}
}