-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
32 lines (32 loc) · 867 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
{
"type": "module",
"version": "1.0.0",
"private": true,
"author": {
"name": "Alexandre Calil Martins Fonseca",
"email": "alexandre@xandao.dev"
},
"license": "MIT",
"description": "Rent the best thetan from Thetan Arena Rental Market",
"main": "./dist/main.js",
"scripts": {
"prod": "node dist/main.js",
"build": "rimraf dist && tsc -p . && cp ./package.prod.json ./dist/package.json && cp ./.env.example ./dist/.env"
},
"dependencies": {
"beeper": "^3.0.0",
"dotenv": "^16.0.1",
"set-interval-async": "^3.0.2",
"simple-node-logger": "^21.8.12",
"undici": "^5.10.0",
"web3": "^1.6.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.1",
"@types/node": "^18.7.13",
"@types/set-interval-async": "^1.0.0",
"rimraf": "^3.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.5.4"
}
}