-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "covid-reports-api",
"version": "1.0.0",
"description": "A Covid19 API",
"engines": {
"node": "14.x"
},
"main": "app.js",
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' mocha -r ts-node/register --exit ./src/tests/*.spec.ts",
"dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoisesTabar/CovidReportsAPI.git"
},
"author": "MoisesTabar",
"license": "MIT",
"bugs": {
"url": "https://github.com/MoisesTabar/CovidReportsAPI/issues"
},
"homepage": "https://github.com/MoisesTabar/CovidReportsAPI#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.15",
"@types/chai-http": "^4.2.0",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/ioredis": "^4.22.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.2.1",
"@types/mongoose": "^5.10.3",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.31",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"chai": "^4.3.3",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ioredis": "^4.23.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.3.1",
"mongoose": "^5.11.18",
"morgan": "^1.10.0"
}
}