-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 815 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 815 Bytes
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
{
"name": "cryptobot",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=build tsc",
"start": "cross-env NODE_ENV=production node ./dist/app.js",
"dev": "cross-env NODE_ENV=development nodemon",
"test": "cross-env NODE_ENV=test jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cross-env": "^7.0.3",
"dotenv-defaults": "^5.0.2",
"ethers": "^6.7.1",
"exceljs": "^4.3.0",
"mongoose": "^7.4.5",
"node-fetch": "^3.3.2",
"telegraf": "^4.12.2"
},
"devDependencies": {
"@types/dotenv-defaults": "^2.0.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}