-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "express-typescript",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"tsoa": "tsoa",
"tsoa:routes": "tsoa routes",
"tsoa:spec": "tsoa spec",
"generate": "npm run tsoa:routes && npm run tsoa:spec",
"start": "node build/app.js",
"predev": "npm run swagger",
"prebuild": "npm run swagger",
"build": "tsc",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec\"",
"swagger": "tsoa spec",
"test": "echo \"Error: no test specified\" && exit 1"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tsoa/runtime": "^6.4.0",
"express": "^4.21.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.4.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/sequelize": "^4.28.20",
"@types/swagger-ui-express": "^4.1.6",
"concurrently": "^9.0.1",
"nodemon": "^3.1.5",
"prettier": "^3.3.3",
"ts-node": "^10.9.2"
}
}