-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 942 Bytes
/
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
{
"name": "institutional-carbon-wallet",
"packageManager": "[email protected]",
"dependencies": {
"@safe-global/api-kit": "1.3.1",
"@safe-global/protocol-kit": "1.3.0",
"@safe-global/safe-core-sdk-types": "2.3.0",
"dotenv": "16.3.1",
"ethers": "5.7.2"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"esbuild": "0.17.15",
"eslint": "8.14.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-functional": "4.4.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"prettier": "2.8.7",
"prettier-plugin-sort-json": "1.0.0",
"ts-node": "10.9.1",
"typescript": "4.8.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn run lint:fix"
}
}