-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.79 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.79 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
37
38
39
40
41
42
43
{
"name": "frequency-chopsticks-xcm-testing",
"version": "1.0.0",
"description": "XCM testing environment for Frequency and AssetHub using Chopsticks",
"scripts": {
"test": "VERBOSE_LOG=true RUNTIME_LOG_LEVEL=5 vitest run",
"test:debug": "LOG_LEVEL=debug RUNTIME_LOG_LEVEL=5 vitest run",
"test:trace": "LOG_LEVEL=trace RUNTIME_LOG_LEVEL=5 vitest run --reporter=verbose",
"test:xcm": "npx @acala-network/chopsticks xcm --r polkadot --p frequency --p asset-hub",
"fork:frequency": "npx @acala-network/chopsticks --config=configs/frequency.yml",
"fork:assethub": "npx @acala-network/chopsticks --config=configs/asset-hub.yml",
"fork:clean": "rm -f ./db/*.sqlite || true",
"fork:xcm": "npm run -s fork:clean && POLKADOT_BLOCK_NUMBER=27409884 STATEMINT_BLOCK_NUMBER=9525342 FREQUENCY_BLOCK_NUMBER=9117938 npx @acala-network/chopsticks xcm -r ./configs/polkadot.yml -p ./configs/asset-hub.yml -p ./configs/frequency.yml",
"start": "node --loader ts-node/esm index.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "prettier --check . && npm run format"
},
"devDependencies": {
"@acala-network/chopsticks": "^1.2.2",
"@acala-network/chopsticks-testing": "^1.2.2",
"@polkadot/api": "^12.0.0",
"@polkadot/types": "^16.0.0",
"@polkadot/util": "^13.0.0",
"@polkadot/util-crypto": "^13.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"type": "module",
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
},
"dependencies": {
"@polkadot-api/descriptors": "file:.papi/descriptors",
"@polkadot-labs/hdkd": "^0.0.23",
"@polkadot-labs/hdkd-helpers": "^0.0.23",
"dotenv": "^17.2.1",
"polkadot-api": "^1.16.4"
}
}