-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 998 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
{
"name": "depeg-backend-processor",
"version": "0.2.4",
"description": "Depeg backend processor",
"main": "main.ts",
"scripts": {
"postinstall": "$npm_execpath run typechainDepegTypes",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev src/main.ts",
"build": " tsc --project tsconfig.json",
"typechainDepegTypes": "typechain --target ethers-v5 --out-dir src/contracts/depeg-contracts './node_modules/@etherisc/depeg-contracts/build/contracts/**/*json'"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@etherisc/depeg-contracts": "1.1.3-73ce1e5",
"@typechain/ethers-v5": "^11.1.2",
"@types/node": "^20.12.12",
"ts-node-dev": "^2.0.0",
"typechain": "^8.3.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/express": "^4.17.21",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"express": "^4.19.2",
"redis": "^4.7.0",
"redis-om": "^0.4.3",
"winston": "^3.14.2"
}
}