-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
38 lines (38 loc) · 1.06 KB
/
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
{
"name": "sdk-example",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"prestart": "npm run build",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --ext .js,.ts src/**",
"format": "prettier --write \"*.ts\" "
},
"author": "",
"license": "MIT or Apache-2.0",
"peerDependencies": {
"@0xpolygonid/js-sdk": "1.10.3",
"@0xpolygonid/mongo-storage": "github:0xPolygonID/nodejs-storage-example",
"@iden3/js-crypto": "1.1.0",
"@iden3/js-jsonld-merklization": "1.2.0",
"@iden3/js-jwz": "1.4.0",
"@iden3/js-merkletree": "1.2.0"
},
"dependencies": {
"dotenv": "^16.3.1",
"ethers": "6.8.0",
"mongodb-memory-server": "^8.16.0",
"mongodb": "^6.1.0"
},
"devDependencies": {
"@iden3/eslint-config": "https://github.com/iden3/eslint-config",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}