-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 955 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": "qp-explorer-backend",
"version": "1.0.0",
"main": "src/server.ts",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon && ts-node src/server.ts",
"migration": "cross-env NODE_ENV=development ts-node src/migration/timestampToDate.ts"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.3",
"cross-env": "^7.0.3",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"axios": "^1.5.0",
"cors": "^2.8.5",
"cron": "^3.1.7",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"helmet": "^6.0.1",
"http-status": "^1.6.2",
"joi": "^17.8.4",
"mongoose": "^7.0.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.21",
"web3": "^1.8.2"
}
}