-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 875 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
{
"dependencies": {
"add": "^2.0.6",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"mysql2": "^2.3.3"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.23",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/winston": "^2.4.4",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
},
"scripts": {
"start": "node dist/server.js",
"build": "tsc -p .",
"dev": "nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/server.ts"
},
"name": "backend",
"version": "1.0.0",
"main": "server.js",
"license": "MIT"
}