-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "andi-taxi-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/maelfosso/andi-taxi-api"
},
"scripts": {
"start": "ts-node-dev --respawn --transpile-only --watch src/ src/index.ts",
"test": "jest --forceExit --coverage --verbose --detectOpenHandles"
},
"keywords": [],
"author": "Mael FOSSO",
"license": "ISC",
"devDependencies": {
"@types/faker": "^5.5.5",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/supertest": "^2.0.11",
"ts-jest": "^26.5.6"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/morgan": "^1.9.2",
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.11.1",
"faker": "^5.5.3",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.8",
"morgan": "^1.10.0",
"supertest": "^6.1.3",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}