forked from Zilliqa/kaya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "kaya",
"version": "0.2.0",
"description": "Zilliqa's RPC Server",
"main": "server.js",
"scripts": {
"test": "jest -c jest.config.js",
"dev": "cross-env NODE_ENV=dev node server.js",
"start": "node server.js",
"start:fixtures": "node server.js --f test/account-fixtures.json",
"debug": "node server.js -v",
"debug:fixtures": "node server.js -f test/account-fixtures.json -v"
},
"author": "Edison Lim",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/Zilliqa/kaya"
},
"bin": {
"kaya": "./server.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"superagent": "^3.8.3",
"supertest": "^3.1.0"
},
"dependencies": {
"bn.js": "^4.11.8",
"body-parser": "^1.18.3",
"colors": "^1.3.0",
"cors": "^2.8.4",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"glob": "^7.1.3",
"hash.js": "^1.1.5",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.22.2",
"node-fs": "^0.1.7",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rimraf": "^2.6.2",
"yargs": "^11.0.0",
"zilliqa-js": "^0.1.19"
}
}