forked from RobinBuschmann/sequelize-typescript-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 868 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
{
"name": "sequelize-typescript-starter",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "node --require ts-node/register index.ts",
"dev": "nodemon ./src/server.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bluebird": "^3.5.38",
"@types/cors": "^2.8.13",
"@types/morgan": "^1.9.4",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"morgan": "^1.10.0",
"mysql2": "^3.2.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.31.0",
"sequelize-typescript": "^2.1.5",
"strong-error-handler": "^4.0.3"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"ts-node": "^10.9.1",
"tslint": "^5.20.1",
"typescript": "^5.0.4"
}
}