-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
119 lines (119 loc) · 3.31 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
{
"name": "paras-v2-landing",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:testnet": "PORT=8081 dotenv -e .env.testnet next dev",
"dev:mainnet": "PORT=8082 dotenv -e .env.mainnet next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"prettier-check": "prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"@draft-js-plugins/anchor": "^4.1.1",
"@draft-js-plugins/buttons": "^4.0.0",
"@draft-js-plugins/divider": "^4.1.1",
"@draft-js-plugins/editor": "^4.0.0",
"@draft-js-plugins/focus": "^4.1.0",
"@draft-js-plugins/image": "^4.0.0",
"@draft-js-plugins/inline-toolbar": "^4.1.0",
"@draft-js-plugins/linkify": "^4.1.0",
"@draft-js-plugins/static-toolbar": "^4.0.0",
"@draft-js-plugins/video": "^4.1.0",
"@paras-wallet-selector/core": "5.2.0",
"@paras-wallet-selector/here-wallet": "5.2.0",
"@paras-wallet-selector/meteor-wallet": "5.2.0",
"@paras-wallet-selector/modal-ui": "5.2.0",
"@paras-wallet-selector/my-near-wallet": "5.2.0",
"@paras-wallet-selector/near-wallet": "5.2.0",
"@paras-wallet-selector/sender": "5.2.0",
"@paras-wallet-selector/wallet-utils": "5.2.0",
"@ramper/near": "^0.0.21",
"@react-three/drei": "8.20.2",
"@react-three/fiber": "7.0.27",
"@sentry/nextjs": "^6.12.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@transak/transak-sdk": "^1.0.31",
"async-retry": "^1.3.3",
"axios": "^0.21.0",
"blurhash": "^1.1.3",
"cachios": "^3.0.0",
"capitalize": "^2.0.4",
"cids": "^1.1.5",
"clsx": "^1.2.1",
"compressorjs": "^1.0.7",
"croppie": "^2.6.5",
"dayjs": "^1.11.5",
"debounce": "^1.2.1",
"draft-js": "^0.11.7",
"file-type": "^16.5.3",
"generate-avatar": "^1.4.10",
"javascript-time-ago": "^2.3.2",
"js-base64": "^3.5.2",
"js-cookie": "^2.2.1",
"jsbi": "^3.1.4",
"near-api-js": "^0.44.2",
"next": "^11.0.1",
"postcss": "^8.4.12",
"query-string": "^7.1.1",
"react": "17.0.1",
"react-awesome-animated-number": "^1.0.6",
"react-blurhash": "^0.1.3",
"react-card-flip": "^1.1.5",
"react-content-loader": "^6.0.3",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "17.0.1",
"react-google-recaptcha": "^2.1.0",
"react-hamburgers": "^1.0.0",
"react-hook-form": "^6.10.0",
"react-horizontal-scrolling-menu": "^2.7.0",
"react-infinite-scroll-component": "^5.1.0",
"react-intl": "^5.9.2",
"react-linkify": "^1.0.0-alpha",
"react-responsive-carousel": "^3.2.23",
"react-share": "^4.3.1",
"react-tooltip": "^4.2.17",
"recharts": "^2.1.9",
"recyclerlistview": "^3.0.5",
"sanitize-html": "^2.7.0",
"swr": "^2.0.3",
"three": "^0.141.0",
"uuid": "^8.3.2",
"zustand": "^4.3.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.2.3",
"autoprefixer": "^10.4.4",
"dotenv-cli": "^4.1.1",
"eslint": "^7.30.0",
"eslint-config-next": "^12.2.3",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"postcss-import": "^13.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "2.4.1",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.0.23"
},
"license": "GPL-3.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{html,css,less,ejs}": [
"git add"
]
}
}