-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 904 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
{
"name": "custodial-wallet-backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "tsc && node build/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"debug": "ts-node-dev --inspect --respawn --transpile-only src/index.ts",
"build": "tsc"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.4.3",
"@types/node-cron": "^3.0.11",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.2",
"node-cron": "^3.0.3",
"node-schedule": "^2.1.1",
"web3": "^4.8.0",
"web3-utils": "^4.2.3",
"zod": "^3.22.4"
}
}