-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 KB
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
43
44
45
46
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typechain:generate": "typechain --target web3-v1 --out-dir src/contracts 'src/data/abis/*.json'",
"dev": "npm run typechain:generate && tsc && node dist/index.js",
"build": "npm run typechain:generate && tsc",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bugsnag/js": "^7.16.2",
"axios": "^0.23.0",
"cors": "^2.8.5",
"cron-time-generator": "^1.2.2",
"delay": "^5.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.0",
"web3": "^1.6.0",
"winston": "^3.7.2",
"source-map-support": "^0.5.21"
},
"engines": {
"node": "14.17.4"
},
"devDependencies": {
"@typechain/web3-v1": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.15",
"@types/node-cron": "^3.0.1",
"@types/node-fetch": "^3.0.3",
"@types/nodemailer": "^6.4.4",
"@types/source-map-support": "^0.5.4",
"typechain": "^7.0.0",
"typescript": "^4.5.5"
}
}