-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 859 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
36
37
{
"name": "nomad-core",
"version": "1.0.0",
"description": "Core service of Nomad App and Nomad Token",
"main": "server.ts",
"scripts": {
"start": "ts-node src/server.ts"
},
"author": "@maikotrindade",
"license": "MIT",
"engines": {
"node": "20.1.0"
},
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^10.17.60",
"alchemy-sdk": "^2.6.1",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ethers": "^6.4.0",
"express": "^4.18.2",
"helmet": "^7.0.0",
"mongoose": "^7.2.1",
"node-cron": "^3.0.2",
"node-fetch": "^3.3.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"nodemon": "^2.0.22",
"typescript": "^4.9.5"
}
}