forked from lastrust/nft-marketplace-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.55 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
{
"name": "NFTMarketplaceOfBunzz",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "rimraf \"{node_modules,.next,out.cache}\"",
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx src --fix",
"tsc-test": "tsc --project . --noEmit",
"lint": "npm-run-all tsc-test eslint",
"prepare": "husky install",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@headlessui/react": "^1.7.2",
"@hookform/resolvers": "^2.9.8",
"@moralisweb3/next": "^2.13.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"axios": "^0.27.2",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"dayjs": "^1.11.5",
"ethers": "^5.7.1",
"framer-motion": "^7.3.6",
"jotai": "^1.8.4",
"js-cookie": "^3.0.1",
"little-state-machine": "^4.7.0",
"lodash": "^4.17.21",
"moralis": "^2.13.0",
"next": "12.3.1",
"next-auth": "^4.19.2",
"next-pwa": "^5.6.0",
"next-seo": "^5.5.0",
"next-sitemap": "^3.1.22",
"next-themes": "^0.2.1",
"overlayscrollbars": "^1.13.1",
"overlayscrollbars-react": "^0.3.0",
"rc-slider": "^10.0.1",
"react": "18.2.0",
"react-countdown": "^2.3.2",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.2",
"react-hook-form": "^7.36.0",
"react-query": "^3.39.2",
"react-share": "^4.4.0",
"react-table": "^7.7.0",
"react-toastify": "^9.1.1",
"react-use": "^17.3.2",
"recharts": "2.1.12",
"swiper": "^8.4.2",
"tiny-invariant": "^1.2.0",
"use-media-size": "^1.0.5",
"uuid": "^9.0.0",
"web3modal": "^1.9.9",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/js-cookie": "^3.0.1",
"@types/node": "18.7.18",
"@types/overlayscrollbars": "^1.12.1",
"@types/react": "18.0.20",
"@types/react-table": "^7.7.9",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"autoprefixer": "^10.4.12",
"eslint": "^7.32.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.25.1",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"prettier": "^2.7.0",
"prettier-plugin-organize-imports": "^3.2.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.8",
"typescript": "4.7.3"
}
}