-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "sequelize-with-typescript",
"version": "1.0.0",
"description": "A boilerplate of using express with sequalize/MySQL",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"start:dev": "nodemon",
"db:up": "docker-compose up -d",
"db:create": "sequelize db:create",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "sequelize db:migrate:undo",
"db:seed": "sequelize db:seed:all",
"db:seed:undo": "sequelize db:seed:undo:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malik-samad/sequelize-with-typscript.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/malik-samad/sequelize-with-typscript/issues"
},
"homepage": "https://github.com/malik-samad/sequelize-with-typscript#readme",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mysql2": "^3.6.5",
"node": "^21.2.0",
"sequelize": "^6.35.1",
"sequelize-cli": "^6.6.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.3",
"@types/sequelize": "^4.28.19",
"nodemon": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}