-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "challenge-iclinic",
"version": "1.0.0",
"description": "This repository contains the solution for IClinic's challenge",
"main": "index.js",
"repository": "[email protected]:lzricardo/challenge-iclinic.git",
"author": "Luiz Ricardo <[email protected]>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production ./node_modules/pm2/bin/pm2-runtime src/server.js --name API",
"dev": "NODE_ENV=development nodemon src/server.js --ignore __tests__",
"pretest": "NODE_ENV=test sequelize db:migrate",
"test": "NODE_ENV=test jest",
"posttest": "NODE_ENV=test sequelize db:migrate:undo:all"
},
"private": true,
"dependencies": {
"@sentry/node": "^5.12.3",
"cache-manager": "^2.11.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"helmet": "^3.21.2",
"morgan": "^1.9.1",
"pm2": "^4.2.3",
"request": "^2.88.2",
"request-plus": "^2.0.0",
"sequelize": "^5.21.4"
},
"devDependencies": {
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"sequelize-cli": "^5.5.1",
"sqlite3": "^4.1.1",
"supertest": "^4.0.2"
}
}