-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.25 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
{
"name": "@virto-network/node-e2e-tests",
"version": "1.0.0",
"description": "E2E Tests for Virto Node",
"private": true,
"type": "module",
"main": "index.ts",
"scripts": {
"start": "node --env-file=.env --loader ts-node/esm index.ts",
"test": "LOG_LEVEL=error node --env-file=.env --test --loader ts-node/esm test/index.ts",
"utils:setup-community": "node --loader ts-node/esm utils/communities/setup-community.ts",
"utils:kreivo103": "node --loader ts-node/esm utils/communities/kreivo-103.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/virto-network/virto-node-e2e-tests.git"
},
"keywords": [
"virto-node",
"kreivo",
"e2e"
],
"author": "Virto Network <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/virto-network/virto-node-e2e-tests/issues"
},
"homepage": "https://github.com/virto-network/virto-node-e2e-tests#readme",
"dependencies": {
"@acala-network/chopsticks": "^0.9.10",
"@polkadot/api": "^10.12.2",
"@polkadot/keyring": "^12.6.2",
"@polkadot/types": "^10.12.2",
"@polkadot/wasm-crypto": "^7.3.2",
"hash-wasm": "^4.11.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@tsconfig/node21": "^21.0.1"
}
}