-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "ariadne-web-api",
"version": "1.0.0",
"private": true,
"description": "User-facing HTTP API for Ariadne's Thread project.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./scripts/ ./test/ ./lib/",
"start": "node ./scripts/launch-api.js",
"add-user": "node ./scripts/add-user.js",
"apidoc": "apidoc -i ./lib/ -o ./doc/",
"rebuild-grpc": "grpc_tools_node_protoc --js_out=import_style=commonjs,binary:./ --grpc_out=./ --plugin=protoc-gen-grpc=`which grpc_tools_node_protoc_plugin` ./lib/grpc/planner.proto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ariadnes-thread/ariadne-web-api.git"
},
"author": {
"name": "Timur Kuzhagaluyev",
"email": "[email protected]",
"url": "https://foxypanda.me/"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ariadnes-thread/ariadne-web-api/issues"
},
"homepage": "https://github.com/ariadnes-thread/ariadne-web-api#readme",
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@types/bunyan": "^1.8.4",
"@types/http-errors": "^1.6.1",
"@types/joi": "^13.0.7",
"apidoc": "^0.17.6",
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^5.0.0",
"grpc-tools": "^1.6.6"
},
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"compression": "^1.7.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"google-protobuf": "^3.5.0",
"grpc": "^1.10.1",
"http-errors": "^1.6.3",
"joi": "^13.1.2",
"jsonwebtoken": "^8.2.1",
"pg-promise": "^8.2.3",
"prompt-sync": "^4.1.6"
}
}