-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "farming",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"compile": "typechain-compiler --toolchain nightly-2022-10-10 --release",
"test": "yarn test:typechain",
"test:single": "jest",
"test:typechain": "jest --testPathPattern \".spec.ts$\" --runInBand",
"lint": "prettier --check . && eslint . && cargo check",
"lint:fix": "prettier --write . && eslint . --fix && cargo fmt --all",
"postinstall": "patch-package"
},
"devDependencies": {
"@727-ventures/typechain-compiler": "0.5.10",
"@727-ventures/typechain-types": "0.0.21",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"extra-bigint": "^1.1.9",
"husky": "^8.0.1",
"patch-package": "^6.4.7",
"ts-jest": "^29.0.3",
"ts-node": "^10.8.0"
},
"resolutions": {
"@polkadot/api": "^9.10.3",
"@polkadot/api-contract": "^9.10.3"
},
"dependencies": {
"jest": "^29.3.1"
}
}