-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 2.07 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
{
"name": "goalproof",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@9.3.0",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"contracts:compile": "hardhat compile",
"contracts:test": "hardhat test",
"contracts:coverage": "hardhat test --coverage",
"contracts:gas": "hardhat run scripts/gas-snapshot.ts",
"typecheck": "tsc -p tsconfig.json --pretty false",
"node": "hardhat node",
"deploy:localhost": "hardhat ignition deploy ignition/modules/GoalProof.ts --network localhost",
"deploy:sepolia": "hardhat ignition deploy ignition/modules/GoalProof.ts --network sepolia",
"export:abi": "hardhat run scripts/export-abi.ts",
"seed:localhost": "hardhat run scripts/seed-demo.ts --network localhost",
"setup:localhost": "pnpm deploy:localhost && pnpm seed:localhost",
"grant:localhost": "hardhat run scripts/grant-local-operator.ts --network localhost",
"demo:localhost": "hardhat run scripts/demo-flow.ts --network localhost",
"time:localhost": "hardhat run scripts/advance-time.ts --network localhost",
"frontend:dev": "pnpm --dir frontend dev",
"frontend:typecheck": "pnpm --dir frontend typecheck",
"frontend:lint": "pnpm --dir frontend lint",
"frontend:test": "pnpm --dir frontend test",
"frontend:build": "pnpm --dir frontend build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm contracts:compile && pnpm typecheck && pnpm contracts:test && pnpm frontend:typecheck && pnpm frontend:lint && pnpm frontend:test && pnpm frontend:build"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "3.0.7",
"@nomicfoundation/hardhat-ignition": "3.1.6",
"@openzeppelin/contracts": "5.6.1",
"@types/chai": "5.2.3",
"@types/mocha": "10.0.10",
"@types/node": "24.10.1",
"chai": "6.2.1",
"ethers": "6.16.0",
"hardhat": "3.9.0",
"mocha": "11.7.5",
"prettier": "3.7.4",
"typescript": "6.0.3"
},
"pnpm": {
"overrides": {
"rollup": "npm:@rollup/wasm-node@4.62.2"
}
}
}