-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 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
{
"name": "expressapimusic",
"version": "0.1.0",
"description": "fil rouge api music",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"start:dev": "nodemon src/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"seed:all": "npx sequelize-cli db:seed:all",
"seed:undo": "npx sequelize-cli db:seed:undo:all",
"docker:build": "docker build . -t alexandrelamberty/bookstore-api:master",
"docker:push": "docker push alexandrelamberty/bookstore-api:master"
},
"author": "Aude",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.20"
},
"dependencies": {
"argon2": "^0.30.3",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.9.8",
"sequelize": "^6.37.3",
"tedious": "^15.1.3",
"uuid": "^10.0.0",
"yup": "^1.4.0"
}
}