-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 979 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 979 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
37
38
39
{
"name": "zkp-job-platform",
"version": "0.1.0",
"description": "Zero-Knowledge Proof Based Job Application Platform on Aztec Network",
"main": "index.js",
"type": "module",
"scripts": {
"compile": "aztec-nargo compile",
"codegen": "aztec codegen target -o src/artifacts",
"deploy": "npm run compile && ts-node-esm deploy-aztec.ts",
"start": "node dist/index.js",
"build": "tsc",
"test": "jest"
},
"keywords": [
"zkp",
"aztec",
"noir",
"privacy",
"blockchain"
],
"author": "",
"license": "ISC",
"dependencies": {
"@aztec/accounts": "^0.86.0",
"@aztec/aztec.js": "^0.86.0",
"@aztec/noir-contracts.js": "^0.86.0",
"dotenv": "^16.5.0",
"ethers": "^5.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.19.100",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}