-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "typeauthd",
"version": "1.0.5",
"description": "Authorization service for multiple purposes",
"scripts": {
"test": "jest",
"start": "node ./dist/index.js",
"start-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",
"express-body-parser-error-handler": "^1.0.7",
"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": "^5.1.7",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"jest": "^29.7.0",
"send": ">=0.19.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2"
}
}