-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
74 lines (74 loc) · 2.22 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
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
70
71
72
73
74
{
"name": "blacksmith",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"ci": "pnpm commitlint && pnpm format && pnpm lint && pnpm typecheck && pnpm test",
"commitlint": "commitlint --from=65377e2",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"test": "NODE_OPTIONS='--no-experimental-fetch' vitest run",
"test:coverage": "pnpm test -- --coverage",
"test:watch": "NODE_OPTIONS='--no-experimental-fetch' vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@rainbow-me/rainbowkit": "^1.3.0",
"ethers": "5.7.2",
"fp-ts": "^2.16.1",
"lodash": "^4.17.21",
"lowdb": "6.1.1",
"next": "^14.0.4",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^2.2.4",
"viem": "^1.19.11",
"wagmi": "^1.4.10",
"whatwg-fetch": "^3.6.19",
"zod": "^3.22.4",
"zod-validation-error": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@faker-js/faker": "^8.3.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.4",
"@types/react": "^18.2.42",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.0.2",
"abitype": "^0.10.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"jsdom": "^23.0.1",
"msw": "^1.3.2",
"next-router-mock": "^0.9.10",
"node-mocks-http": "^1.13.0",
"postcss": "^8.4.32",
"prettier": "3.1.0",
"tailwindcss": "^3.3.6",
"typescript": "^5.2.2",
"vite": "^5.0.7",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.0.2"
}
}