-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "token-price-oracle-orchestrator",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"sc:extract": "typechain --target=ethers-v6 './src/contracts/abi/json/*.json' --out-dir './src/contracts'"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node-cron": "^3.0.11",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethers": "^6.9.0",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"log4js": "^6.9.1",
"node-cron": "^3.0.3",
"redux": "^5.0.0",
"socket.io": "^4.7.2",
"swagger-ui-express": "^5.0.0"
}
}