-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "typescript.futurum.express",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "tsoa spec-and-routes && tsc && tsc-alias -p tsconfig.json",
"build:routes": "tsoa routes",
"build:swagger": "tsoa spec",
"build:tsoa": "tsoa spec-and-routes",
"dev": "ts-node-dev -r tsconfig-paths/register src/server.ts",
"start": "node /app/build/src/server.js",
"test": "jest --coverage",
"watch": "tsc -w"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"cors": "^2.8.5",
"debug": "~4.3.4",
"dotenv": "^16.4.5",
"express": "~4.16.1",
"helmet": "^7.1.0",
"http-errors": "~1.6.3",
"http-problem-details": "^0.1.5",
"http-status": "^1.7.4",
"inversify": "^6.0.2",
"inversify-binding-decorators": "^4.0.0",
"lightship": "6.7.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"reflect-metadata": "^0.2.1",
"swagger-ui-express": "^5.0.0",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.8",
"tsoa": "^6.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.4",
"@types/node-fetch": "^2.6.11",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"overrides": {
"serialize-error": "^8.1.0"
}
}