-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.57 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
{
"name": "thrift-tutorial",
"version": "1.0.0",
"description": "An example usage of Thrift to build a Node service with TypeScript",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"precodegen": "rimraf src/codegen",
"codegen": "thrift-typescript --target thrift-server --sourceDir thrift --outDir src/codegen",
"lint": "tslint --fix ./src/**/*.ts",
"prebuild": "npm run clean && npm run codegen",
"build": "npm run codegen && npm run lint && tsc",
"start": "npm run build && node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinbgreene/thrift-tutorial.git"
},
"author": "Kevin Greene <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kevinbgreene/thrift-tutorial/issues"
},
"homepage": "https://github.com/kevinbgreene/thrift-tutorial#readme",
"devDependencies": {
"@creditkarma/thrift-typescript": "^1.1.5",
"@types/node": "^8.0.47",
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"typescript": "2.6.x"
},
"dependencies": {
"@creditkarma/dynamic-config": "^0.5.2",
"@creditkarma/thrift-client": "^0.6.5",
"@creditkarma/thrift-server-core": "^0.6.5",
"@creditkarma/thrift-server-express": "^0.6.5",
"@creditkarma/thrift-server-hapi": "^0.6.5",
"@types/express": "^4.11.0",
"@types/hapi": "^16.1.12",
"@types/request": "^2.47.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"hapi": "^16.1.12",
"request": "^2.83.0"
}
}