-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "hero-ticket-issuer-node",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "ts-node ./src/index.ts",
"start:prod": "node ./dist/src/index.js",
"dev": "nodemon ./src/index.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.9.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@0xpolygonid/js-sdk": "^1.4.1",
"@0xpolygonid/mongo-storage": "github:0xPolygonID/nodejs-storage-example",
"@iden3/js-crypto": "^1.0.3",
"@iden3/js-iden3-core": "^1.1.0",
"@iden3/js-jsonld-merklization": "^1.1.2",
"@iden3/js-jwz": "^1.1.2",
"@iden3/js-merkletree": "^1.1.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"cors": "^2.8.5",
"ethers": "^6.8.0",
"express": "^4.18.2",
"mongodb": "^6.3.0",
"mongodb-memory-server": "^9.1.1",
"morgan": "^1.10.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
}
}