-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 942 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
36
37
38
{
"name": "backup-service",
"version": "0.1.2",
"description": "",
"main": "server.ts",
"scripts": {
"start": "ts-node server.ts",
"build": "tsc",
"server": "yarn build && node dist/server.js",
"test": "jest",
"test:integration": "jest -c jest.integration.js --forceExit"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.1",
"@types/jest": "^24.0.22",
"@types/mongodb": "^3.3.10",
"@types/morgan": "^1.7.37",
"@types/supertest": "^2.0.8",
"@types/tiny-secp256k1": "^1.0.0",
"jest": "^24.9.0",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mongodb": "^3.3.3",
"morgan": "^1.9.1",
"reflect-metadata": "^0.1.13",
"tiny-secp256k1": "^1.1.3",
"typeorm": "^0.2.20"
}
}