-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.2 KB
/
package.json
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
{
"name": "@frak-id-blockchain/contracts",
"version": "1.0.0",
"description": "All the FRAK smart contracts, with the associated tests, scripts and tasks",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/frak-id/frak-id-blockchain"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "forge clean",
"build": "forge build",
"test": "pnpm test:forge && pnpm test:storage",
"test:forge": "forge test",
"test:storage": "npx @openzeppelin/upgrades-core validate out/build-info",
"coverage:report": "forge coverage --report lcov",
"coverage:html": "lcov-viewer lcov -o ./coverage ./lcov.info",
"coverage": "pnpm coverage:report && pnpm coverage:html && open ./coverage/index.html",
"generate": "wagmi generate",
"generate:react": "wagmi generate -c ./wagmi-react.config.ts"
},
"devDependencies": {
"@lcov-viewer/cli": "^1.3.0",
"@openzeppelin/upgrades-core": "^1.30.1",
"@wagmi/cli": "^1.5.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"private": true,
"engines": {
"node": "^18.16.0"
},
"packageManager": "[email protected]"
}