-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 859 Bytes
/
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
{
"name": "billgetter",
"version": "1.0.0",
"description": "billergetter",
"main": "src/index.ts",
"engines": {
"node": "15.15.1"
},
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"build": "tsc",
"start": "node ./dist/src/index.js",
"start:db": "docker-compose up -d",
"build:start": "npm run build && npm run start"
},
"author": "Oludayo Fafiolu",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/mongoose": "^5.11.97",
"axios": "^0.21.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"express": "^4.17.1",
"jest": "^27.0.4",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-mockito": "^2.6.1",
"typescript": "^4.3.2"
},
"dependencies": {}
}