-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 839 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
{
"name": "node-typescript-mysql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && nodemon dist/app.js",
"dev": "tsc && nodemon src/app.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.1",
"mysql2": "^2.3.3",
"sequelize": "^6.19.0",
"sequelize-typescript": "^2.1.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.16",
"@types/express": "^4.17.13",
"@types/node": "^17.0.31",
"@types/swagger-jsdoc": "^6.0.3",
"@types/swagger-ui-express": "^4.1.6",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1"
}
}