-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
38
39
40
41
42
43
44
45
{
"name": "2020.2-e-vacina-backend",
"version": "1.0.0",
"description": "Carteira de vacinacao digital",
"main": "start.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "nodemon -L src/start.js",
"prod": "node src/start.js -production",
"popullate": "node scripts/popullate/popullate.js",
"precommit": "npm run lint",
"test": "npx jest --detectOpenHandles --testTimeout=15000 --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fga-eps-mds/2020.2-e-Vacina-Backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fga-eps-mds/2020.2-e-Vacina-Backend/issues"
},
"homepage": "https://github.com/fga-eps-mds/2020.2-e-Vacina-Backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"docsify": "^4.12.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.19",
"nodemon": "^2.0.7"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.4",
"axios": "^0.21.1",
"csv-parser": "^3.0.0",
"eslint": "^7.24.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"supertest": "^6.1.3"
}
}