-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "testing-wagmi",
"private": true,
"version": "0.1.0",
"scripts": {
"anvil": "anvil --fork-url $ANVIL_FORK_URL --fork-block-number 9747461",
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"lint:fix": "pnpm lint --fix",
"lint:format": "prettier --write",
"lint:types": "tsc --noEmit",
"preinstall": "npx only-allow pnpm",
"prepare": "npx simple-git-hooks",
"start": "next start",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "npx playwright test",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:update": "vitest --update"
},
"dependencies": {
"next": "^12.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"viem": "^0.3.36",
"wagmi": "^1.0.6"
},
"devDependencies": {
"@playwright/test": "^1.25.0",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.7.3",
"@types/prettier": "^2.7.0",
"@types/react": "^18.0.17",
"@vitest/ui": "^0.21.1",
"c8": "^7.12.0",
"eslint": "^8.21.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.7.4",
"vitest": "^0.21.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --cache --cache-location .next/cache/eslint/ --fix"
],
"*.{json,md,mdx,yml}": [
"pnpm lint:format"
]
},
"packageManager": "pnpm@7.5.0",
"engines": {
"node": ">=16",
"pnpm": ">=7"
}
}