-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
83 lines (83 loc) · 2.38 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
75
76
77
78
79
80
81
82
83
{
"name": "nextjs-template",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"import-notion": "node import-notion.js",
"prepare": "husky install",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"@babel/core": "^7.18.5",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/clear-sans": "^4.5.3",
"@hookform/resolvers": "^2.8.8",
"@web3-onboard/coinbase": "^2.2.3",
"@web3-onboard/core": "^2.19.0",
"@web3-onboard/dcent": "^2.2.6",
"@web3-onboard/frontier": "^2.0.3",
"@web3-onboard/gnosis": "^2.1.9",
"@web3-onboard/infinity-wallet": "^2.0.3",
"@web3-onboard/injected-wallets": "^2.8.6",
"@web3-onboard/keepkey": "^2.3.6",
"@web3-onboard/ledger": "^2.4.5",
"@web3-onboard/react": "^2.8.2",
"@web3-onboard/sequence": "^2.0.7",
"@web3-onboard/trust": "^2.0.3",
"@web3-onboard/walletconnect": "^2.3.7",
"alchemy-sdk": "^2.10.0",
"autoprefixer": "^10.4.14",
"axios": "^1.7.4",
"cypress": "^10.3.1",
"cypress-image-snapshot": "^4.0.1",
"framer-motion": "^5.6.0",
"js-crc": "^0.2.0",
"lodash": "^4.17.21",
"next": "^14.2.10",
"path": "^0.12.7",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.25.3",
"react-icons": "^4.3.1",
"react-slick": "^0.29.0",
"rgt": "^1.0.7",
"slick-carousel": "^1.8.1",
"tailwindcss": "^3.3.2",
"ulid": "^2.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "20.8.2",
"@types/react": "18.2.24",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.50.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-testing-library": "^5.0.5",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"typescript": "5.2.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix",
"jest -b --silent --findRelatedTests"
]
},
"packageManager": "[email protected]"
}