-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.08 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.08 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "web3-react-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"author": "Wonderland",
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"dev": "WATCHPACK_POLLING=true next dev",
"build": "next build",
"start": "next start -p 3000",
"preview": "next start",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier src --check",
"prettier:fix": "pnpm run prettier --write",
"format": "pnpm run prettier:fix && yarn run lint:fix",
"format:check": "pnpm run prettier && yarn run lint",
"prepare": "husky && wonderland-crypto-husky-checks install",
"test:fork:latest": "RPC_URL=${NEXT_PUBLIC_RPC_URL:-https://ethereum-sepolia-rpc.publicnode.com/} && anvil --fork-url $RPC_URL --chain-id 11155111 --no-storage-caching",
"synpress:cache": "npx synpress",
"playwright:install": "playwright install",
"playwright:test": "playwright test --reporter=list",
"playwright:test:headed": "playwright test --reporter=list --headed",
"test:e2e": "playwright test",
"test:unit": "jest",
"test": "pnpm run test:unit && pnpm run test:e2e"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/**/*.{js,jsx,ts,tsx,css,scss,md,html}": "prettier --write --ignore-unknown"
},
"dependencies": {
"@emotion/cache": "11.14.0",
"@emotion/react": "11.14.0",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.14.0",
"@mui/icons-material": "6.1.1",
"@mui/material": "6.4.5",
"@mui/material-nextjs": "6.4.3",
"@next/eslint-plugin-next": "15.3.3",
"@rainbow-me/rainbowkit": "2.2.5",
"@tanstack/react-query": "5.80.3",
"next": "15.3.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-router-dom": "7.6.2",
"viem": "2.30.6",
"wagmi": "2.15.4",
"react-katex": "^3.0.1",
"katex": "^0.16.11",
"react-confetti": "^6.1.0"
},
"devDependencies": {
"@defi-wonderland/crypto-husky-checks": "1.5.6",
"@dotenvx/dotenvx": "1.44.2",
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.22.0",
"@jest/globals": "29.7.0",
"@playwright/test": "1.53.0",
"@synthetixio/synpress": "4.1.0",
"@types/jest": "29.5.12",
"@types/lodash.merge": "4.6.7",
"@types/node": "22.7.4",
"@types/react": "18.3.10",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.12",
"globals": "15.9.0",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "25.0.1",
"lodash.merge": "4.6.2",
"prettier": "3.3.3",
"styled-components": "6.1.13",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.2"
}
}