-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "deer-ipfs-gateway",
"version": "0.1.0",
"author": "",
"description": "Api for deernetwork protocol",
"main": "dist/index.js",
"keywords": [],
"license": "MIT",
"scripts": {
"dev": "ts-node src/index.ts",
"lint": "eslint .",
"test": "apitest tests",
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"prepublishOnly": "npm run -s clean && npm run -s build",
"kisagen": "npm run kisagen:api && npm run kisagen:apiIpfs && npm run kisagen:apiInner",
"kisagen:api": "kisa-typegen api.jsona src/generated/api.ts",
"kisagen:apiIpfs": "kisa-typegen apiIpfs.jsona src/generated/apiIpfs.ts",
"kisagen:apiInner": "kisa-typegen apiInner.jsona src/generated/apiInner.ts"
},
"dependencies": {
"@polkadot/api": "^6.9.2",
"@use-services/echo": "^1.3.1",
"@use-services/httperr": "^1.3.1",
"@use-services/ioredis": "^1.3.1",
"@use-services/winston": "^1.3.1",
"async-ratelimiter": "^1.3.0",
"bullmq": "^1.59.4",
"http-proxy": "^1.18.1",
"ioredis": "^4.28.2",
"kisa": "^0.5.1",
"koa-bodyparser": "^4.3.0",
"lodash": "^4.17.21",
"stoppable": "^1.1.0",
"use-services": "^1.3.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/http-proxy": "^1.17.8",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"kisa-typegen": "^0.2.1",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}