-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.2 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
{
"name": "cheddar-ecosystem",
"version": "0.1.0",
"homepage": "https://kenrouit.github.io/cheddar-ecosystem",
"private": true,
"type": "module",
"scripts": {
"predeploy": "yarn run prettier && yarn run build",
"deploy": "gh-pages -d build",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"prettier:watch": "onchange \"**/*.{js,jsx,ts,tsx,json}\" -- prettier --write {{changed}}"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@coinbase/onchainkit": "^0.33.3",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@near-wallet-selector/bitte-wallet": "^8.9.12",
"@near-wallet-selector/core": "^8.9.12",
"@near-wallet-selector/here-wallet": "^8.9.12",
"@near-wallet-selector/ledger": "^8.9.12",
"@near-wallet-selector/meteor-wallet": "^8.9.12",
"@near-wallet-selector/mintbase-wallet": "^8.9.12",
"@near-wallet-selector/modal-ui": "^8.9.12",
"@near-wallet-selector/my-near-wallet": "^8.9.3",
"@next/font": "^14.2.5",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^5.51.1",
"classnames": "^2.5.1",
"near-api-js": "^2.1.4",
"react": "^18",
"react-dom": "^18",
"react-matter-js": "^1.0.5",
"viem": "2.x",
"wagmi": "^2.12.16",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^9",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"framer-motion": "^11.3.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"next": "14.2.5",
"onchange": "^7.1.0",
"prettier": "^3.3.2",
"typescript": "^5"
},
"lint-staged": {
"*.js ": "eslint",
"*.ts": "eslint",
"*.tsx": "eslint"
}
}