-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (28 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (28 loc) · 910 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
{
"name": "mastering-node12",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"db-plans": "docker run --name plans-db -e MYSQL_ROOT_PASSWORD=123456789 -p 3307:3306 -d mysql:5.7",
"db-subscriptions": "docker run --name subscriptions-db -e MYSQL_ROOT_PASSWORD=123456789 -p 3308:3306 -d mysql:5.7",
"db-auth": "docker run --name auth-db -e MYSQL_ROOT_PASSWORD=123456789 -p 3309:3306 -d mysql:5.7",
"db-cache": "docker run --name plans-cache -p 6380:6379 -d redis"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^16.1.4",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"helmet": "^3.21.1",
"morgan": "^1.9.1",
"mysql2": "^1.7.0",
"sequelize": "^5.19.2"
}
}