-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "example-partner-service",
"version": "1.0.0",
"scripts": {
"lint": "tslint --project tsconfig.json --format stylish",
"fix": "tslint --project tsconfig.json --format stylish --fix",
"prestart": "yarn build",
"start": "node ./build/main.js",
"test": "jest",
"build": "tsc",
"prebuild": "del build/* -f",
"postbuild": "del 'build/**/__*__/' && cp package.json build/ && cp README.md build/"
},
"dependencies": {
"@springworks/spark-partner-service-client": "^1.8.0",
"boom": "^7.2.0",
"handlebars": "^4.7.6",
"hapi": "^17.6.0",
"joi": "^14.0.0",
"request": "^2.88.0",
"vision": "^5.4.3"
},
"devDependencies": {
"@springworks/tslint-config": "^2.0.0",
"@types/hapi": "^17.0.14",
"@types/jest": "^23.3.9",
"@types/node": "^12",
"@types/request": "^2.48.0",
"@types/vision": "^5.3.5",
"del-cli": "^1.1.0",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"ts-jest": "^23.10.4",
"ts-mockito": "^2.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3",
"typestrict": "^1.0.1"
},
"repository": "git@github.com:Springworks/example-partner-service.git",
"author": "Springworks",
"license": "MIT"
}