-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "spike-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile-proto": "./generate-proto.sh spike-service",
"start": "npm run build && node ./dist/index.js",
"build": "tsc",
"serve": "node ./dist/index.js",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"run_tests": "npm run tslint"
},
"author": "Yonatan Tal",
"license": "ISC",
"devDependencies": {
"@types/google-protobuf": "^3.7.2",
"@types/jsonwebtoken": "^8.3.5",
"@types/node": "^12.12.17",
"@types/passport-jwt": "^3.0.3",
"grpc_tools_node_protoc_ts": "^2.5.11",
"highlight.js": "^9.18.5",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2"
},
"dependencies": {
"axios": "^0.19.0",
"fs": "0.0.1-security",
"google-protobuf": "^3.11.1",
"grpc": "^1.24.2",
"grpc-tools": "^1.8.0",
"grpc-ts-health-check": "^1.0.14",
"jsonwebtoken": "^8.5.1",
"redis": "^2.8.0",
"spike-get-token": "^1.1.1",
"request": "^2.88.2",
"typescript": "^3.7.3"
}
}