-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.29 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
{
"name": "netifi-quickstart-js",
"version": "1.6.10",
"description": "The Netifi Quickstart exercise for JavaScript",
"main": "index.js",
"contributors": [
"Kyle Bahr ([email protected])",
"Duncan Alexander ([email protected])",
"Alan Scherger ([email protected])"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack",
"start": "webpack && http-server ./build -p 3000 -c-1",
"server": "node src/server/server.js",
"server-as-client": "node src/server/server.js true",
"protoc": "protoc --proto_path=proto --proto_path=node_modules/rsocket-rpc-protobuf/proto --js_out=import_style=commonjs,binary:src/shared/netifi --rsocket_rpc_out=src/shared/netifi --plugin=protoc-gen-rsocket_rpc=node_modules/.bin/rsocket_rpc_js_protoc_plugin proto/*.proto"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"http-server": "^0.11.1",
"rsocket-rpc-core": "^0.0.5-0",
"rsocket-rpc-frames": "^0.0.3",
"rsocket-rpc-metrics": "^0.0.1",
"rsocket-rpc-protobuf": "^0.1.6",
"rsocket-rpc-tracing": "^0.0.3",
"webpack": "3.2.0",
"copy-webpack-plugin": "^4.6.0"
},
"dependencies": {
"google-protobuf": "^3.6.1",
"netifi-js-client": "^1.6.10",
"ws": "^6.1.0"
}
}