-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.05 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": "@olympusdao/incur-debt",
"version": "1.3.2",
"main": "src/index.ts",
"repository": "https://github.com/OlympusDAO/incur-debt-ts.git",
"author": "PARABRAHMAN0 <[email protected]>",
"license": "MIT",
"bin": {
"incur-debt": "src/cli.js"
},
"scripts": {
"lint": "eslint \"**/*.ts\"",
"lint:fix": "eslint --fix \"**/*.ts\"",
"format": "prettier --check \"**/*.ts\"",
"format:fix": "prettier --write \"**/*.ts\"",
"prepare": "husky install"
},
"dependencies": {
"commander": "^9.3.0",
"ethers": "^5.6.9",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.8.2"
}
}