-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 2.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"version": "0.1.4-127",
"private": true,
"type": "module",
"engines": {
"yarn": "^1.10.1",
"node": "18.x.x"
},
"workspaces": [
"examples/*",
"packages/*",
"tests/*"
],
"resolutions": {
"@polkadot/api": "10.3.2",
"@polkadot/keyring": "11.1.3",
"@polkadot/types": "10.3.2",
"@polkadot/util": "11.1.3",
"@polkadot/util-crypto": "11.1.3",
"@polkadot/rpc-core": "10.3.2",
"@polkadot/api-derive": "10.3.2",
"@types/node": "18.15.11"
},
"scripts": {
"pumbp": "./scripts/update-version.js prerelease",
"build": "yarn build-ts:dev",
"build-ts:dev": "node ./scripts/webb-build-dev.cjs",
"build:release": "node ./scripts/webb-build-release.cjs",
"lint": "polkadot-dev-run-lint --skip-tsc",
"clean": "polkadot-dev-clean-build",
"postinstall": "polkadot-dev-yarn-only",
"wasm:test": "wasm-pack test --release --node ./packages/wasm-utils ",
"test": "yarn test:unit && yarn test:integration && yarn wasm:test",
"test:unit": "mocha 'packages/**/*.spec.ts' --parallel --exit",
"test:integration": "mocha 'tests/integration_tests/**/*.ts' --exit",
"test:perf": "cross-env NODE_OPTIONS=--experimental-wasm-modules jest --config ./jest.perf.config.js",
"check-deps": "./node_modules/@open-web3/util/scripts/check-deps.js yarn.lock @polkadot/ @open-web3/",
"update-metadata": "NODE_OPTIONS='--loader ./loader.js' node --experimental-specifier-resolution=node packages/types/scripts/updateMetadata.ts",
"example:mixer": "NODE_OPTIONS=\"--loader ./loader.js\" node ./examples/node/substrate/mixer.ts",
"script": "NODE_OPTIONS=\"--loader ./loader.js\" node",
"format": "prettier --write \"{packages,examples,tests}/**/*.{ts,js,jsx,tsx}\" && cargo fmt --manifest-path packages/wasm-utils/Cargo.toml",
"doc": "npx typedoc --name \"Webb Tools API\" --includeVersion --options ./typedoc.json",
"ts-check": "tsc --noEmit -p ./tsconfig.json",
"deploy-ps-vanchor": "NODE_OPTIONS='--loader ./loader.js' node --experimental-specifier-resolution=node ./scripts/init-vanchor-pool-share.ts"
},
"devDependencies": {
"@polkadot/api": "10.3.2",
"@polkadot/dev": "^0.72.42",
"@polkadot/keyring": "11.1.3",
"@polkadot/types": "10.3.2",
"@polkadot/util": "11.1.3",
"@polkadot/util-crypto": "11.1.3",
"@types/mocha": "^10.0.1",
"@types/source-map-support": "^0.5.3",
"@webb-tools/protocol-substrate-types": "0.0.10",
"cross-env": "^7.0.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"ethers": "5.7.0",
"get-port": "6.1.2",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"mocha": "10.2.0",
"prettier": "^2.2.1",
"rxjs": "7.8.0",
"source-map-support": "^0.5.19",
"stop-only": "^3.1.2",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.24.1",
"typescript": "5.0.4"
},
"dependencies": {
"@types/node": "18.15.11"
}
}