-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 894 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 894 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
33
34
35
36
37
38
39
{
"name": "covid-19-project",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --verbose --runInBand",
"test:watch": "npm run test -- --watch",
"start": "node server.js",
"start:watch": "nodemon server.js"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 10000,
"preset": "jest-puppeteer"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.1.5",
"eslint": "^6.8.0",
"jest": "^25.2.7",
"mongodb-memory-server": "^6.5.2",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jest-puppeteer": "^4.4.0",
"mongoose": "^5.9.7",
"puppeteer": "^2.1.1",
"superagent": "^5.2.2",
"twilio": "^3.42.1"
}
}