-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 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
{
"name": "tsoa-api-template",
"version": "1.0.0",
"main": "build/src/server.js",
"scripts": {
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa -c tsoaConfig.json spec-and-routes\"",
"build": "tsoa -c tsoaConfig.json spec-and-routes && tsc && tsc-alias",
"start": "node build/src/server.js"
},
"repository": "git@github.com:thecodearcher/tsoa-api-template.git",
"author": "Brian Iyoha <brian.iyoha@gmail.com>",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"morgan": "^1.10.0",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.5.1",
"winston": "^3.17.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/joi": "^17.2.3",
"@types/morgan": "^1.9.9",
"@types/node": "^22.9.0",
"@types/swagger-ui-express": "^4.1.7",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.7",
"prettier": "3.4.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}