-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.26 KB
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
43
{
"name": "notes-api",
"version": "1.0.0",
"description": "A note taking backend infrastructure using expressJS",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"db:start": "docker-compose up -d",
"db:stop": "docker-compose down",
"db:logs": "docker-compose logs -f mysql",
"db:reset": "docker-compose down -v && docker-compose up -d",
"db:migrate": "sequelize-cli db:migrate",
"db:migrate:undo": "sequelize-cli db:migrate:undo",
"db:migrate:undo:all": "sequelize-cli db:migrate:undo:all",
"db:migration:generate": "sequelize-cli migration:generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mshahzadiftikhar/notes-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/mshahzadiftikhar/notes-api/issues"
},
"homepage": "https://github.com/mshahzadiftikhar/notes-api#readme",
"dependencies": {
"bcrypt": "^6.0.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"ioredis": "^5.9.0",
"jsonwebtoken": "^9.0.3",
"mysql2": "^3.16.0",
"sequelize": "^6.37.7"
},
"devDependencies": {
"nodemon": "^3.1.11",
"sequelize-cli": "^6.6.3"
}
}