-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.1 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.1 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "zkcreditscore",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"description": "On chain credit score using ZK proofs",
"scripts": {
"dev": "hardhat compile && yarn deploy && vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "hardhat compile && NODE_OPTIONS='--experimental-loader ts-node/esm/transpile-only' hardhat run --network ${NETWORK} scripts/deploy.ts",
"test": "NODE_OPTIONS='--experimental-loader ts-node/esm/transpile-only' hardhat test"
},
"dependencies": {
"@noir-lang/backend_barretenberg": "0.22.0",
"@noir-lang/noir_js": "0.22.0",
"@noir-lang/noir_wasm": "0.22.0",
"@noir-lang/types": "0.22.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "1.0.0",
"@nomicfoundation/hardhat-viem": "1.0.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"connectkit": "1.6.0",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.0.3",
"ethers": "^6.11.0",
"hardhat": "^2.19.2",
"js-base64": "^3.7.6",
"jsqr": "^1.4.0",
"lucide-react": "^0.330.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.1",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"typechain": "^8.1.0",
"viem": "1.16.6"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.5",
"@types/react": "^18.0.26",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.17",
"chai": "^4.2.0",
"hardhat-gas-reporter": "^1.0.9",
"postcss": "^8.4.35",
"solidity-coverage": "^0.8.5",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^5.0.6",
"wagmi": "^1.4.8"
},
"engines": {
"node": "18.x"
}
}