-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "service-starter",
"version": "1.0.0",
"description": "A starter template for building MAX microservices",
"main": "index.js",
"repository": "[email protected]:MAXDeliveryNG/service-starter.git",
"author": "Patrick Foh <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/bunyan": "^1.8.5",
"@types/continuation-local-storage": "^3.2.1",
"@types/dotenv": "^6.1.0",
"@types/jest": "^22.2.3",
"@types/supertest": "^2.0.7",
"jest": "^23.0.1",
"supertest": "^3.3.0",
"ts-jest": "^22.4.6",
"tslint": "^5.12.0",
"typescript": "^2.8.3"
},
"dependencies": {
"bunyan": "^1.8.12",
"bunyan-logstash-tcp": "^1.0.0",
"continuation-local-storage": "^3.2.1",
"dotenv": "^6.2.0",
"express": "^4.16.3",
"inversify": "^4.13.0",
"inversify-express-utils": "^6.2.0",
"moment": "^2.22.1",
"prom-client": "^11.0.0",
"reflect-metadata": "^0.1.12",
"uuid": "^3.2.1"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"collectCoverage": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/typings"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}