-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 731 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 731 Bytes
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
{
"name": "auth-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/app.js",
"migrate:up": "npx sequelize-cli db:migrate",
"dev": "npm run migrate:up && npm start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"redis": "^4.6.5",
"sequelize": "^6.29.1"
},
"devDependencies": {
"eslint": "^8.35.0",
"jest": "^29.5.0",
"sequelize-cli": "^6.6.0"
}
}