forked from Errorist79/aleo-validator-monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1008 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
38
39
40
41
42
{
"name": "aleo-backend",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"build": "tsc",
"start": "node --experimental-specifier-resolution=node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@aleohq/sdk": "^0.6.9",
"@provablehq/sdk": "^0.6.13",
"@types/pg": "^8.11.10",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"node-cron": "^3.0.2",
"pg": "^8.13.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.5.5",
"@types/node-cron": "^3.0.8",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}