-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.11 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
{
"private": true,
"name": "orderly-v2-examples-ts",
"version": "1.0.0",
"description": "Examples of how to use Orderly EVM API",
"author": "Mario Reder <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "tsx src/index.ts",
"typegen": "typechain --target=ethers-v6 --input-dir ./src/abi --out-dir ./src/abi",
"lint": "prettier --check . && eslint . --ext .js,.jsx,.ts,.tsx,.svelte",
"format": "prettier --write . && yarn eslint --fix ."
},
"dependencies": {
"@noble/ed25519": "^2.0.0",
"bs58": "^5.0.0",
"dotenv": "^16.4.5",
"ethers": "^6.11.1"
},
"devDependencies": {
"@orderly.network/types": "^0.2.4",
"@typechain/ethers-v6": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typechain": "^8.3.2",
"typescript": "^5.4.2"
}
}