-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1 KB
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
{
"name": "polkadot-http-api",
"version": "1.0.0",
"main": "index.js",
"repository": "git@gitee.com:czyczk/polkadot-http-api",
"author": "Zenas Chen <czyczk@qq.com>",
"license": "MIT",
"dependencies": {
"@polkadot/api": "^8.4.2",
"@polkadot/api-contract": "^8.4.2",
"http-method-enum": "^1.0.0",
"restify": "^8.6.0",
"restify-errors": "^8.0.2",
"rwlock": "^5.0.0"
},
"devDependencies": {
"@types/node": "^17.0.3",
"@types/restify": "^8.5.4",
"@types/restify-errors": "^4.3.4",
"@types/rwlock": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@polkadot/types-known": "^8.4.2",
"eslint": "^8.10.0",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"scripts": {
"start": "yarn run ts-node src/main.ts",
"dev": "yarn run ts-node-dev --respawn src/main.ts"
}
}