forked from AcalaNetwork/scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.49 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
77
78
79
80
{
"name": "scripts",
"version": "1.0.0",
"repository": "https://github.com/AcalaNetwork/scripts.git",
"author": "Acala developers <[email protected]>",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"scripts": {
"lint": "tsc --project . --noEmit && eslint . --ext .js,.ts && prettier -c .",
"fix": "tsc --project . --noEmit && eslint . --ext .js,.ts --fix && prettier -w .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"resolutions": {
"@acala-network/api-derive": "^4.1.6-29",
"@acala-network/api": "^4.1.6-29",
"@acala-network/sdk-core": "^4.1.6-29",
"@acala-network/sdk": "^4.1.6-29",
"@acala-network/type-definitions": "^4.1.6-29",
"@acala-network/types": "^4.1.6-29",
"@polkadot/api-augment": "^9.1.1",
"@polkadot/api-derive": "^9.1.1",
"@polkadot/api": "^9.1.1",
"@polkadot/rpc-core": "^9.1.1",
"@polkadot/rpc-augment": "^9.1.1",
"@polkadot/typegen": "^9.1.1",
"@polkadot/types-augment": "^9.1.1",
"@polkadot/types-codec": "^9.1.1",
"@polkadot/types": "^9.1.1",
"@polkadot/util": "^10.1.3",
"@polkadot/util-crypto": "^10.1.3"
},
"dependencies": {
"@acala-network/api": "^4.1.6-29",
"@acala-network/sdk": "^4.1.6-29",
"@acala-network/sdk-core": "^4.1.6-29",
"@acala-network/sdk-wallet": "^4.1.6-29",
"@acala-network/types": "^4.1.6-29",
"@fast-csv/format": "^4.3.5",
"@fast-csv/parse": "^4.3.6",
"@open-web3/util": "^2.0.1",
"@polkadot/api": "^9.1.1",
"async": "^3.2.4",
"bn.js": "^5.2.1",
"dotenv": "^16.0.1",
"graphql-request": "^4.3.0",
"moment": "^2.29.4",
"mongoose": "^6.5.2",
"rxjs": "^7.5.6",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/async": "^3.2.15",
"@types/node": "^18.7.1",
"@types/yargs": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,md}": "prettier --write"
}
}