forked from bigint/hey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.85 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.85 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
94
95
96
97
98
99
{
"name": "lenster",
"version": "1.0.1-beta",
"private": true,
"scripts": {
"dev": "next dev --port 4783",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint . --ext .js,.ts,.tsx",
"typecheck": "tsc --noEmit",
"prettier": "prettier --write \"./{data,src}/**/*.{ts,tsx}\"",
"prettier:check": "prettier --check \"./{data,src}/**/*.{ts,tsx}\"",
"codegen": "graphql-codegen",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@bundlr-network/client": "^0.8.7",
"@giphy/js-fetch-api": "^4.3.1",
"@giphy/react-components": "^6.2.0",
"@headlessui/react": "^1.7.2",
"@heroicons/react": "v1",
"@hookform/resolvers": "^2.9.8",
"@sentry/nextjs": "^7.13.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tippyjs/react": "^4.2.6",
"@types/react-mentions": "^4.1.6",
"axios": "^0.27.2",
"clsx": "^1.2.1",
"dayjs": "^1.11.5",
"dotenv": "^16.0.2",
"ethers": "5.6.0",
"framer-motion": "^7.3.6",
"graphql": "^16.6.0",
"interweave": "^13.0.0",
"interweave-autolink": "^5.1.0",
"jwt-decode": "^3.1.2",
"mixpanel-browser": "^2.45.0",
"next": "^12.3.1",
"next-themes": "^0.2.1",
"next-transpile-modules": "^9.0.0",
"plyr-react": "^5.1.0",
"react": "^18.2.0",
"react-cool-inview": "^3.0.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.36.1",
"react-hot-toast": "^2.4.0",
"react-mentions": "^4.4.7",
"uuid": "^9.0.0",
"wagmi": "^0.6.7",
"zod": "^3.19.1",
"zustand": "^4.1.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.12.1",
"@graphql-codegen/fragment-matcher": "^3.3.1",
"@graphql-codegen/typescript": "^2.7.3",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@types/mixpanel-browser": "^2.38.0",
"@types/node": "^18.7.20",
"@types/react": "^18.0.21",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"autoprefixer": "^10.4.12",
"eslint": "^8.24.0",
"eslint-config-next": "^12.3.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3"
},
"nextBundleAnalysis": {
"budget": null,
"budgetPercentIncreaseRed": 10,
"showDetails": true
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
],
"*.json": [
"prettier --write"
]
}
}