forked from Supercolony-net/typechain-polkadot
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "typechain-workspace",
"workspaces": [
"packages/*"
],
"files": [
"tests/**/*"
],
"private": true,
"scripts": {
"publish": "npx lerna publish",
"start-typechain": "npx @727-ventures/typechain-polkadot --in ./artifacts --out ./out",
"gen-test-ts": "npx @727-ventures/typechain-polkadot --in tests/artifacts --out tests/generated",
"only-test": "npx jest --no-cache --maxWorkers 1",
"test": "yarn gen-test-ts && yarn only-test",
"lint": "eslint \"{packages, examples}/**/*.ts\"",
"lint:fix": "eslint --fix \"{packages, examples}/**/*.ts\""
},
"dependencies": {
"lerna": "^5.1.8",
"@727-ventures/typechain-polkadot": "file:packages/typechain-polkadot",
"@727-ventures/typechain-types": "file:packages/typechain-types",
"@types/bn.js": "^5.1.0",
"@types/eslint": "^8.4.3",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.18.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"hjson": "^3.2.2",
"ts-jest": "^28.0.0",
"typescript": "^4.7.4"
},
"resolutions": {
"@polkadot/util": "12.2.2"
}
}