-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 KB
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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "treetracker-capture-service",
"version": "1.0.0",
"description": "Capture microservice for Treetracker with Keycloak authentication and Hyperledger Fabric integration",
"main": "dist/server.js",
"scripts": {
"build": "rm -rf dist && tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"watch": "nodemon --exec ts-node src/server.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist"
},
"keywords": ["treetracker", "capture", "keycloak", "hyperledger-fabric", "blockchain"],
"author": "Treetracker Team",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.0.0",
"morgan": "^1.10.0",
"jsonwebtoken": "^9.0.2",
"keycloak-connect": "^23.0.3",
"express-session": "^1.17.3",
"fabric-network": "^2.2.20",
"fabric-ca-client": "^2.2.20",
"uuid": "^9.0.0",
"multer": "^1.4.5-lts.1",
"dotenv": "^16.3.1",
"axios": "^1.5.0",
"pg": "^8.11.3"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/cors": "^2.8.13",
"@types/morgan": "^1.9.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/uuid": "^9.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^20.4.5",
"typescript": "^5.1.6",
"ts-node": "^10.9.1",
"nodemon": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"@types/jest": "^29.5.3",
"@types/express-session": "^1.17.10",
"@types/pg": "^8.10.2"
}
}