-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"name": "policyvault",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.17.1",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"clean": "hardhat clean",
"node": "hardhat node",
"deploy:local": "hardhat run scripts/deploy.ts --network localhost",
"seed:local": "hardhat run scripts/seed.ts --network localhost",
"demo:local": "hardhat run scripts/demo.ts --network localhost",
"abi:sync": "tsx scripts/sync-abi.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"web:dev": "pnpm --filter policyvault-web dev",
"web:build": "pnpm --filter policyvault-web build",
"check": "pnpm compile && pnpm test && pnpm format:check"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox-viem": "^5.0.3",
"@openzeppelin/contracts": "^5.6.1",
"@types/node": "^22.15.30",
"dotenv": "^16.4.7",
"hardhat": "^3.0.17",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"viem": "^2.47.6"
}
}