-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.04 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": "banking-api",
"version": "1.0.0",
"description": "Banking api",
"main": "src/server.js",
"scripts": {
"build": "tsc",
"start": "nodemon --exec ts-node src/server.ts",
"testing": "jest --watchAll",
"test": "jest ."
},
"keywords": [
"Banking",
"API"
],
"author": "Andrews Kangah",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongoose": "^5.10.5",
"@types/node": "^15.3.0",
"dotenv": "^9.0.2",
"jest": "^26.6.3",
"mongoose": "^5.12.10",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1"
}
}