forked from AgriTrust-Protocol/AgriTrust-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1012 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1012 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
31
32
33
34
35
36
{
"name": "agritrust-backend",
"version": "1.0.0",
"description": "API for AgriTrust Protocol",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"preflight": "npx ts-node src/cli/preflight_command.ts",
"test": "npx vitest run",
"test:lock": "npx ts-node tests/integration/silo_lock_test.ts",
"test:unit": "npx ts-node tests/unit/sensors.test.ts",
"migrate": "node -e \"require('./src/database/migrate')\""
},
"dependencies": {
"@noble/curves": "^2.2.0",
"@opentelemetry/api": "^1.9.0",
"@stellar/stellar-sdk": "^16.0.0",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"pg": "^8.13.0",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.9.3",
"@types/pg": "^8.20.0",
"@types/uuid": "^10.0.0",
"pg-mem": "^3.0.14",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"uuid": "^14.0.1",
"vitest": "^4.1.9"
}
}