-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "aave-starknet-bridge-js",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"prepare": "yarn tsc",
"lint": "eslint . --cache --fix --ext .ts",
"generate-contracts": "typechain --target starknet --out-dir src/generated/contracts src/abis/*.json"
},
"author": "Soufiane Hajazi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hsouf/starknet-aave-bridge-js.git"
},
"homepage": "https://github.com/hsouf/starknet-aave-bridge-js#readme",
"dependencies": {
"@typechain/starknet": "^0.2.3",
"get-starknet": "^1.4.2",
"starknet": "^3.12.3"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,js,md,yml,json}": "prettier --write"
},
"devDependencies": {
"@types/elliptic": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"typechain": "^8.1.0",
"typescript": "^4.7.3"
}
}