-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.01 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
34
35
36
{
"name": "api-scripts",
"private": true,
"version": "0.1.0",
"license": "GPL-3.0-only",
"scripts": {
"checks": "tsc --noEmit --pretty",
"status": "ts-node src/status",
"script": "ts-node src/script",
"tsnode-strict": "node -r ts-node/register --unhandled-rejections=strict",
"initialize-worker": "ts-node src/initialize-worker",
"buy-membership": "ts-node src/buy-membership",
"storage-dev-init": "./dev-init-storage.sh"
},
"dependencies": {
"@joystream/types": "^4.6.0",
"@mongodb-js/zstd": "^1.1.0",
"@polkadot/api": "10.7.1",
"@polkadot/keyring": "^12.6.2",
"@polkadot/types": "10.7.1",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@substrate/txwrapper-substrate": "6.0.1",
"@substrate/txwrapper-registry": "6.0.1",
"@types/bn.js": "^5.1.0",
"bfj": "^8.0.0",
"bn.js": "^5.2.1"
},
"devDependencies": {
"ts-node": "^10.2.1",
"typescript": "^5.0.2"
},
"volta": {
"extends": "../../package.json"
}
}