forked from defiforpeople/synchronizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 925 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
33
34
35
{
"name": "synchronizer",
"version": "0.0.3",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/server.js",
"dev": "nodemon ./src/cmd/synchronizer/index.ts",
"deposit": "nodemon ./src/cmd/deposit/index.ts | pino-pretty",
"withdraw": "nodemon ./src/cmd/withdraw/index.ts | pino-pretty",
"test": "echo \"Error: no test specified\" && exit 1",
"typescript": "tsc"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.0.4",
"nodemon": "^2.0.19",
"pino-pretty": "^8.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@alch/alchemy-web3": "^1.4.6",
"cors": "^2.8.5",
"ethers": "^5.6.9",
"express": "^4.18.1",
"pg": "^8.7.3",
"pino": "^8.1.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.7"
}
}