forked from paritytech/substrate-api-sidecar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.49 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"version": "3.0.1-dhx.1",
"name": "@substrate/api-sidecar",
"description": "REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.",
"homepage": "https://github.com/paritytech/substrate-api-sidecar#readme",
"author": "Parity Technologies <admin@parity.io>",
"license": "GPL-3.0-or-later",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"bin": {
"substrate-api-sidecar": "./build/src/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/substrate-api-sidecar.git"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/paritytech/substrate-api-sidecar/issues"
},
"scripts": {
"build": "rimraf build/ && tsc",
"build:calc": "bash ./calc/build.sh",
"build:docker": "docker build -t substrate-api-sidecar .",
"build:docs": "(cd docs && yarn && yarn build)",
"main": "node ./build/src/main.js",
"lint": "./node_modules/.bin/tsc && eslint . --ext ts",
"deploy": "yarn build && standard-version",
"start": "yarn run main",
"start:log-rpc": "yarn run build && NODE_ENV=test yarn run main ",
"dev": "tsc-watch --onSuccess \"yarn run main\"",
"test": "jest --silent"
},
"dependencies": {
"@polkadot/api": "^3.7.3",
"@polkadot/apps-config": "^0.78.1",
"@polkadot/util-crypto": "^5.4.4",
"@substrate/calc": "^0.1.3",
"@types/cors": "^2.8.10",
"confmgr": "^1.0.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-winston": "^4.0.5",
"http-errors": "^1.8.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/express-serve-static-core": "^4.17.18",
"@types/http-errors": "^1.6.3",
"@types/jest": "^26.0.20",
"@types/morgan": "^1.9.2",
"@types/triple-beam": "^1.3.2",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"standard-version": "^9.1.0",
"ts-jest": "^26.5.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.1.3"
},
"resolutions": {
"node-forge": ">=0.10.0",
"node-fetch": ">=2.6.1",
"prismjs": ">=1.23.0"
},
"keywords": [
"substrate",
"api",
"sidecar",
"polkadot",
"kusama"
]
}