-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "@tgrospic/rnode-client-js",
"version": "0.10.0",
"description": "RNode sample client: nodejs & web",
"author": "Tomislav Grospic",
"license": "MIT",
"scripts": {
"start:nodejs": "node src/nodejs/client",
"start:web": "parcel src/web/index.html",
"build:web": "npm-run-all clean build",
"build": "parcel build --public-url ./ src/web/index.html",
"rnode-generate": "rnode-grpc --rnode-version dev",
"rnode-generate-dev": "rnode-grpc --rnode-version dev --gen-dir rnode-grpc-dev",
"clean": "rimraf dist .cache",
"clean:all": "rimraf dist .cache rnode-grpc-gen node_modules",
"gh-pages": "npm run build-web && git checkout gh-pages && rm web.* style.* && cp dist/* . && git add ."
},
"dependencies": {
"@grpc/grpc-js": "^1.4.4",
"@tgrospic/rnode-grpc-js": "^0.11.0",
"blakejs": "^1.1.1",
"elliptic": "^6.5.4",
"ethereumjs-util": "^7.1.3",
"google-protobuf": "^3.19.1",
"grpc-web": "^1.3.0",
"mithril": "^2.0.4",
"npm-run-all": "^4.1.5",
"ramda": "^0.27.1"
},
"devDependencies": {
"@parcel/transformer-less": "^2.1.1",
"@types/elliptic": "^6.4.14",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"grpc-tools": "^1.11.2",
"less": "^4.1.2",
"parcel": "^2.1.1",
"process": "^0.11.10",
"protobufjs": "^6.11.2",
"rimraf": "^3.0.2",
"stream-browserify": "^3.0.0",
"typescript": "^4.4.4"
},
"browserslist": "> 0.25%, not dead",
"engines": {
"node": ">=8.0.0"
}
}