forked from bankless-academy/bankless-academy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.43 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "bankless-academy",
"author": "@didierkrux",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"import-content": "node import-content.js",
"import-translations": "node import-translations.js",
"import-keywords": "node import-keywords.js",
"import-modules": "node import-modules.js",
"import-config": "node import-config.js",
"import-poaps": "node import-poaps.js",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint --fix",
"yarn format"
]
},
"dependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^2.8.0",
"@davatar/react": "^1.11.1",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@gitcoinco/passport-sdk-reader": "^0.1.4",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@notionhq/client": "^2.2.5",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@phosphor-icons/react": "^2.0.8",
"@sendgrid/client": "^7.7.0",
"@tanstack/react-table": "^8.10.7",
"@types/mixpanel-browser": "^2.38.0",
"@vercel/kv": "^1.0.0",
"@vercel/og": "^0.5.20",
"@web3modal/wagmi": "^3.0.2",
"axios": "^1.6.0",
"dotenv": "^10.0.0",
"ethereum-blockies-base64": "^1.0.2",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7",
"feed": "^4.2.2",
"framer-motion": "^7.6.15",
"highlight.js": "^11.8.0",
"i18next": "^23.4.6",
"i18next-browser-languagedetector": "^7.1.0",
"iron-session": "^6.3.1",
"js-crc": "^0.2.0",
"jsdom": "^22.0.0",
"knex": "^2.4.0",
"mac-scrollbar": "^0.10.3",
"markdown-it": "^13.0.1",
"md5": "^2.3.0",
"mixpanel": "^0.17.0",
"mixpanel-browser": "^2.45.0",
"net": "^1.0.2",
"next": "^14.0.2",
"notion-client": "^6.13.8",
"notion-to-md": "^3.0.1",
"pg": "^8.7.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-device-detect": "^2.0.0",
"react-dom": "^18.2.0",
"react-hotjar": "^3.0.1",
"react-hotkeys-hook": "^3.3.2",
"react-html-parser": "^2.0.2",
"react-i18next": "^13.2.1",
"react-icons": "^4.2.0",
"react-markdown": "^8.0.3",
"react-notion-x": "^6.13.10",
"rss-parser": "^3.13.0",
"siwe": "^1.1.6",
"stringify-object": "^3.3.0",
"tls": "^0.0.1",
"usehooks-ts": "^2.7.1",
"viem": "^1.19.15",
"wagmi": "^1.4.12"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.13",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^18.7.18",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"babel-jest": "^26.6.3",
"bufferutil": "4.0.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.0.10",
"prettier": "^2.0.2",
"typescript": "^5.0.4",
"utf-8-validate": "5.0.4"
},
"browser": {
"bufferutil": false
}
}