-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.74 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
{
"name": "metamail-website",
"version": "0.1.0",
"private": true,
"author": "walkjoi",
"description": "The website project of MetaMail",
"scripts": {
"dev": "next dev -p 8000",
"build": "next build && next export",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"start": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\""
},
"dependencies": {
"@metamask/eth-sig-util": "^5.0.2",
"@next/third-parties": "^14.2.3",
"@rainbow-me/rainbowkit": "^0.8.1",
"@tinymce/tinymce-react": "^4.3.3-rc.20240325045045390.sha185cf43",
"avvvatars-react": "^0.4.2",
"axios": "^1.2.3",
"buffer": "^6.0.3",
"crypto": "^1.0.1",
"crypto-js": "^4.1.1",
"dompurify": "^3.0.10",
"ethers": "^5.7.2",
"framer-motion": "^11.2.11",
"fs": "^0.0.1-security",
"github-markdown-css": "^5.5.1",
"html-react-parser": "^3.0.9",
"jazzicon": "^1.5.0",
"keccak256": "^1.0.6",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "13.4.9",
"next-auth": "^4.18.8",
"next-transpile-modules": "^10.0.1",
"openaccount-connect": "^1.0.32",
"qs": "^6.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-ga": "^3.3.1",
"react-markdown": "^9.0.1",
"react-quill": "^2.0.0",
"react-slick": "^0.29.0",
"react-toastify": "^9.1.3",
"remark-gfm": "^4.0.0",
"slick-carousel": "^1.8.1",
"theme-change": "^2.5.0",
"tinymce": "^7.0.0",
"uuid": "^9.0.1",
"wagmi": "^0.9.6",
"zustand": "^4.3.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.19",
"@types/crypto-js": "^4.1.1",
"@types/dompurify": "^2.4.0",
"@types/lodash": "^4.14.196",
"@types/node": "18.11.15",
"@types/qs": "^6.9.7",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/react-slick": "^0.23.13",
"autoprefixer": "10.4.14",
"cross-env": "^7.0.3",
"daisyui": "^3.2.1",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6",
"husky": "^4.0.0",
"lib-flexible": "^0.3.2",
"lint-staged": "^10.1.2",
"postcss": "8.4.25",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.2.0",
"postcss-pxtorem": "^5.1.1",
"prettier": "^2.8.1",
"sass": "^1.63.6",
"tailwindcss": "^3.2.4",
"typescript": "4.9.4",
"uuid": "^9.0.1"
},
"husky": {
"hooks": {
"pre-commit": ""
}
},
"lint-staged": {
"**/*.{json,js,ts,tsx}": [
"prettier --write"
]
}
}