-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.03 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
{
"name": "abax-dao-proposals",
"version": "0.1.0",
"private": true,
"scripts": {
"ts": "tsc --noEmit --incremental --preserveWatchOutput --pretty",
"clippy": " cd src && script -efq ./clippy.log -c 'env CARGO_TERM_COLOR=always cargo clippy -- -W clippy::pedantic'",
"lint": "pnpm lint:format && pnpm lint:fix",
"lint:fix": "eslint . --ext .js,.ts --fix --ignore-path ./.gitignore",
"lint:format": "pretty-quick --loglevel warn --write \"./**/*.{js,ts,md,json}\" ",
"prepare": "husky install"
},
"dependencies": {
"@abaxfinance/contract-helpers": "^0.0.119",
"@abaxfinance/utils": "^0.0.119",
"@c-forge/polkahat-chai-matchers": "^0.0.80",
"@c-forge/polkahat-network-helpers": "^0.0.80",
"@c-forge/typechain-compiler": "^0.2.4",
"@c-forge/typechain-polkadot": "0.2.4",
"@c-forge/typechain-types": "0.2.4",
"@polkadot/api": "^10.12.4",
"@polkadot/api-contract": "^10.12.4",
"@polkadot/keyring": "^12.6.2",
"@polkadot/types": "^10.12.4",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"bn.js": "^5.2.1",
"chalk": "^4.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^11.2.0",
"glob": "^8.1.0",
"lint-staged": "^13.3.0",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/lodash": "^4.17.0",
"@types/mocha": "^10.0.6",
"husky": "^9.0.11",
"tsconfig-paths": "^4.2.0"
}
}