-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 921 Bytes
/
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
{
"name": "template-node-web-api",
"version": "0.0.1",
"description": "",
"main": "index.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"swagger:gen": "node ./src/swagger.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mysql2": "^3.6.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.33.0",
"sequelize-typescript": "^2.1.5",
"swagger-autogen": "^2.23.5",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/node": "^20.6.2",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^8.2.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}