forked from paritytech/polkadot-launch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "polkadot-launch",
"version": "2.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Shawn Tabrizi <shawntabrizi@gmail.com>",
"license": "MIT",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"start": "yarn build && node dist/cli.js",
"lint": "prettier -v && prettier --check .",
"lint:write": "prettier --write .",
"para-test": "mocha -r ts-node/register 'test/tests/**/test-*.ts'",
"para-test-no-ci": "mocha -r ts-node/register 'test/tests-no-ci/**/test-*.ts'"
},
"dependencies": {
"@polkadot/api": "^8.9.1",
"@polkadot/api-augment": "^8.9.1",
"@polkadot/keyring": "^9.5.1",
"@polkadot/types": "^8.9.1",
"@polkadot/util": "^9.5.1",
"@polkadot/util-crypto": "^9.5.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"ethers": "^5.4.7",
"filter-console": "^0.1.1",
"libp2p-crypto": "^0.20.0",
"mocha": "^9.1.2",
"peer-id": "^0.15.3",
"tcp-port-used": "^1.0.2",
"ts-node": "^10.3.0",
"web3": "^1.6.0",
"web3-core": "^1.6.0",
"web3-eth": "^1.6.0",
"yargs": "^15.4.1"
},
"files": [
"dist"
],
"bin": {
"polkadot-launch": "dist/cli.js"
},
"devDependencies": {
"@types/node": "^16.4.12",
"@types/tcp-port-used": "^1.0.0",
"prettier": "^2.4.1",
"typescript": "^4.1.5"
}
}