forked from tapexyz/tape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.7 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
{
"name": "lenstube",
"description": "Decentralized video-sharing social media platform.",
"version": "1.0.1-beta",
"scripts": {
"dev": "next dev --port 4783",
"build": "next build",
"start": "next start",
"codegen": "graphql-codegen",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check \"./src/**/*.{ts,tsx}\"",
"check-lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write \"./src/**/*.{ts,tsx}\"",
"lint:fix": "npx eslint --fix .",
"analyse-bundle": "ANALYZE=true yarn build"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@aws-sdk/client-s3": "^3.204.0",
"@aws-sdk/client-sts": "^3.204.0",
"@aws-sdk/lib-storage": "^3.204.0",
"@bundlr-network/client": "^0.9.0",
"@headlessui/react": "^1.7.3",
"@hookform/resolvers": "^2.9.10",
"@rainbow-me/rainbowkit": "^0.7.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/line-clamp": "^0.4.2",
"@tensorflow/tfjs": "^4.0.0",
"@tippyjs/react": "^4.2.6",
"@vime/core": "^5.3.3",
"@vime/react": "^5.3.3",
"axios": "^1.1.3",
"clsx": "^1.2.1",
"dayjs": "^1.11.6",
"ethers": "5.6.0",
"filereader-stream": "^2.0.0",
"graphql": "^16.6.0",
"interweave": "^13.0.0",
"interweave-autolink": "^5.1.0",
"mixpanel-browser": "^2.45.0",
"next": "13.0.2",
"next-axiom": "^0.15.1",
"next-themes": "^0.2.1",
"nsfwjs": "^2.4.2",
"react": "18.2.0",
"react-cool-inview": "^3.0.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.39.1",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.6.0",
"react-mentions": "^4.4.7",
"uuid": "^9.0.0",
"wagmi": "^0.7.13",
"zod": "^3.19.1",
"zustand": "^4.1.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.11",
"@graphql-codegen/fragment-matcher": "^3.3.1",
"@graphql-codegen/typed-document-node": "^2.3.6",
"@graphql-codegen/typescript": "^2.8.1",
"@graphql-codegen/typescript-operations": "^2.5.6",
"@next/bundle-analyzer": "^13.0.1",
"@types/mixpanel-browser": "^2.38.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"@types/react-mentions": "^4.1.7",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"autoprefixer": "^10.4.13",
"eslint": "8.27.0",
"eslint-config-next": "13.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^44.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.2",
"typescript": "4.8.4"
}
}