-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.91 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.91 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
{
"name": "ens-web-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint . --ext .ts --ext .tsx --fix",
"prepare": "husky install",
"check-format": "prettier --check .",
"check-lint": "ESLINT_USE_FLAT_CONFIG=false eslint --ext .ts --ext .tsx .",
"format": "prettier --write ."
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@ensdomains/ensjs": "^3.7.0",
"@fortawesome/fontawesome-common-types": "^6.5.2",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@noble/hashes": "^1.4.0",
"@tanstack/react-query": "^5.40.0",
"@tsparticles/basic": "^3.4.0",
"@tsparticles/engine": "^3.4.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.4.0",
"@types/moment": "^2.13.0",
"@web3modal/ethers": "^4.2.0-alpha.0",
"animate.css": "^4.1.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-regexp": "^2.6.0",
"ethers": "^6.12.1",
"framer-motion": "^11.2.5",
"moment": "^2.30.1",
"next": "14.2.3",
"pino-pretty": "^11.0.0",
"react": "^18",
"react-dom": "^18",
"tslib": "^2.6.2",
"viem": "^2.13.2",
"wagmi": "^2.9.8"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.3.0",
"husky": "^8.0.0",
"postcss": "^8",
"prettier": "3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"typescript-eslint": "^7.10.0"
}
}