-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.28 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.28 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
{
"name": "accord-pay",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "pnpm --filter web dev",
"build": "pnpm -r build && pnpm contracts:test",
"lint": "eslint scripts --ext .ts && pnpm -r lint",
"repo:public-check": "node --import tsx scripts/public-repo-audit.ts",
"test": "pnpm test:root && pnpm -r test && pnpm contracts:test",
"test:root": "vitest run scripts/*.test.ts",
"typecheck": "tsc -p tsconfig.json --noEmit && pnpm -r typecheck",
"contracts:test": "forge test",
"contracts:build": "forge build",
"contracts:fmt": "forge fmt",
"chain:bootstrap": "tsx scripts/base-sepolia-bootstrap.ts",
"chain:seed-test-wallets": "tsx scripts/base-sepolia-test-wallets.ts"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"globals": "^16.5.0",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/coverage-v8": "^4.0.8",
"jsdom": "^27.1.0",
"json-stable-stringify": "^1.3.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"tsx": "^4.20.6",
"typescript-eslint": "^8.46.4",
"viem": "^2.39.3",
"vitest": "^4.0.8"
}
}