-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.1 KB
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
{
"name": "template-node-typescript",
"version": "1.0.0",
"org": "my-org",
"description": "",
"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",
"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": {
"bunyan": "^1.8.12",
"bunyan-prettystream": "^0.1.3",
"cors": "^2.8.5",
"rxjs": "^6.5.2",
"superagent": "^5.0.5",
"tslib": "^1.10.0",
"typescript-ioc": "^1.2.5",
"typescript-rest": "^2.0.0",
"typescript-rest-swagger": "0.0.24"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@pact-foundation/pact": "^8.2.2",
"@pact-foundation/pact-node": "^8.2.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.11",
"@types/jest-plugin-context": "^2.9.2",
"@types/node": "^11.13.19",
"@types/superagent": "^4.1.3",
"@types/supertest": "^2.0.8",
"@types/yargs": "^13.0.0",
"babel-jest": "^24.7.1",
"jest": "^24.7.1",
"jest-plugin-context": "^2.9.0",
"jest-sonar-reporter": "^2.0.0",
"npm-check": "^5.9.0",
"rimraf": "^2.6.3",
"sonarqube-scanner": "^2.5.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.4",
"yargs": "^13.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ibm-garage-cloud/template-node-typescript.git"
}
}