generated from IBM/template-node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "template-node-typescript",
"version": "1.0.0",
"org": "my-org",
"description": "Code pattern for starting a typescript-based microservice",
"main": "index.js",
"config": {
"protocol": "http",
"host": "localhost",
"port": 3000,
"contextRoot": ""
},
"pact": {
"providerBaseUrl": "",
"pactBrokerUrl": ""
},
"scripts": {
"clean": "rimraf dist",
"test": "jest --coverage",
"tdd": "jest --watch",
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "npm run swagger",
"swagger": "swaggerGen -c ./swagger.config.json",
"prestart": "npm run build",
"start": "npm run serve",
"serve": "node dist/src",
"start:dev": "ts-node src | pino-pretty",
"upgrade-interactive": "npm-check --update",
"pact:verify": "ts-node test/pact-verify",
"pact:publish": "ts-node test/pact-publish",
"sonarqube:scan": "npm run test && ts-node test/sonarqube-scan"
},
"author": "",
"license": "ISC",
"dependencies": {
"cls-hooked": "^4.2.2",
"cors": "^2.8.5",
"express-pino-logger": "^4.0.0",
"jaeger-client": "^3.18.0",
"opentracing": "^0.14.4",
"pino": "^6.0.0",
"rxjs": "^6.5.2",
"superagent": "^5.2.2",
"tslib": "^1.11.1",
"typescript-ioc": "^3.2.1",
"typescript-rest": "^3.0.1",
"typescript-rest-ioc": "^1.0.0",
"typescript-rest-swagger": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@pact-foundation/pact": "^9.9.2",
"@pact-foundation/pact-node": "^10.8.0",
"@types/cls-hooked": "^4.3.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.17.3",
"@types/express-pino-logger": "^4.0.2",
"@types/jaeger-client": "^3.15.4",
"@types/jest": "^25.1.4",
"@types/jest-plugin-context": "^2.9.2",
"@types/node": "^13.9.0",
"@types/pino": "^6.0.0",
"@types/superagent": "^4.1.7",
"@types/supertest": "^2.0.8",
"@types/yargs": "^15.0.4",
"babel-jest": "^25.2.4",
"jest": "^25.2.4",
"jest-plugin-context": "^2.9.0",
"jest-sonar-reporter": "^2.0.0",
"npm-check": "^5.9.2",
"pino-pretty": "^3.6.1",
"rimraf": "^3.0.2",
"sonarqube-scanner": "^2.6.0",
"supertest": "^4.0.2",
"ts-jest": "^25.3.0",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"yargs": "^15.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ibm-garage-cloud/template-node-typescript.git"
}
}