-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (39 loc) · 1.13 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
{
"name": "@galxe-identity-protocol/tutorial",
"version": "0.0.1",
"description": "Galxe Identity Protocol tutorial",
"packageManager": "pnpm@9.1.0+sha256.22e36fba7f4880ecf749a5ca128b8435da085ecd49575e7fb9e64d6bf4fad394",
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "echo NOTHING",
"test": "echo TODO",
"tutorial1": "ts-node -T src/tutorial1.ts",
"useNebraUpa": "ts-node -T src/useNebraUpa.ts",
"useZkVerify": "ts-node -T src/useZkVerify.ts",
"prettier:write": "prettier --write ./src",
"lint": "eslint --ignore-path ./.eslintignore --ext .js,.ts ."
},
"dependencies": {
"@galxe-identity-protocol/sdk": "workspace:^",
"@nebrazkp/upa": "^1.2.5",
"@types/jsonfile": "^6.1.4",
"@types/node": "^20.12.11",
"@types/snarkjs": "^0.7.8",
"dotenv": "^16.4.5",
"ethers": "^6.12.1",
"node-fetch": "^3.3.2",
"tslog": "^4.9.2",
"typescript": "^5.4.5",
"zkverifyjs": "^0.3.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"rimraf": "^5.0.6",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
}
}