-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.67 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
{
"name": "commitpass",
"version": "0.1.0",
"private": true,
"description": "Two-sided programmable commitment infrastructure built on Arc.",
"author": "Atakan Gündallı <atakan1705@hotmail.com>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node scripts/serve-static.cjs",
"lint": "eslint app components lib --max-warnings 0",
"typecheck": "tsc --noEmit",
"contracts:compile": "hardhat compile",
"contracts:test": "hardhat test",
"test": "npm run contracts:test",
"deploy:arc": "hardhat run scripts/deploy.cjs --network arcTestnet",
"verify:arcscan": "node scripts/check-arcscan-verification.cjs",
"verify:arcscan:source": "node scripts/verify-arcscan-source.cjs",
"verify:flow:provider-no-show": "node scripts/verify-reservation-4-provider-no-show.cjs",
"verify:flow:disputed-claim": "node scripts/verify-reservation-5-disputed-claim.cjs",
"ci": "npm run contracts:compile && npm run contracts:test && npm run test:session-policy && npm run typecheck && npm run build",
"circle:entity:register": "node scripts/register-circle-entity-secret.cjs",
"circle:wallet:create": "node scripts/create-circle-arc-wallet.cjs",
"circle:wallet:balance": "node scripts/check-circle-wallet-balance.cjs",
"circle:reservation:create": "node scripts/create-circle-commitpass-reservation.cjs",
"contracts:test:v3": "hardhat test test/MutualCommitmentEscrowV3.test.cjs test/MutualCommitmentEscrowV3.security.test.cjs test/MutualCommitmentEscrowV3.premerge.test.cjs test/MutualCommitmentEscrowV3.final-hardening.test.cjs test/MutualCommitmentEscrowV3.platform-attestation.test.cjs",
"deploy:arc:v3": "hardhat run scripts/deploy-v3.cjs --network arcTestnet",
"verify:arcscan:v3:source": "node scripts/verify-arcscan-v3-source.cjs",
"v3:attestation:create": "node scripts/create-v3-attendance-attestation.cjs",
"test:session-policy": "node scripts/run-session-policy-tests.cjs",
"v3:session-attestation:create": "node --experimental-strip-types scripts/create-v3-session-attestations.mts"
},
"dependencies": {
"@circle-fin/developer-controlled-wallets": "^10.8.0",
"@openzeppelin/contracts": "5.6.1",
"next": "15.5.20",
"react": "19.2.7",
"react-dom": "19.2.7",
"viem": "2.55.4"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.1",
"@nomicfoundation/hardhat-ethers": "3.1.0",
"@types/node": "24.3.0",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"chai": "4.5.0",
"eslint": "9.35.0",
"eslint-config-next": "15.5.20",
"ethers": "6.15.0",
"hardhat": "2.28.6",
"typescript": "5.9.2"
},
"engines": {
"node": ">=22"
}
}