-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
77 lines (77 loc) · 2.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
{
"name": "marketplace",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:write": "prettier --write **/*.{ts,css,tsx}",
"format:check": "prettier --check **/*.{ts,css,tsx}",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.5.6",
"@cardinal/namespaces": "^4.1.15",
"@dialectlabs/react": "^0.4.11",
"@dialectlabs/react-ui": "^0.7.3",
"@fontsource/inter": "^4.5.1",
"@fontsource/jetbrains-mono": "^4.5.0",
"@fontsource/material-icons": "^4.5.1",
"@heroicons/react": "^1.0.5",
"@holaplex/marketplace-js-sdk": "^0.2.8",
"@metaplex-foundation/mpl-token-metadata": "^1.2.5",
"@metaplex/js": "^4.12.0",
"@radix-ui/react-popover": "^0.1.6",
"@solana/spl-token-registry": "^0.2.3692",
"@solana/wallet-adapter-base": "^0.9.2",
"@solana/wallet-adapter-react": "^0.15.2",
"@solana/wallet-adapter-react-ui": "^0.9.4",
"@solana/wallet-adapter-wallets": "^0.15.5",
"@solana/web3.js": "1.37.1",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"formidable": "^2.0.1",
"fs-extra": "^10.0.1",
"graphql": "^16.2.0",
"next": "12.0.7",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.8.4",
"next-with-less": "^2.0.5",
"nextjs-cors": "^2.1.0",
"ramda": "^0.28.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "^2.0.9",
"react-hook-form": "^7.25.1",
"react-intersection-observer": "^8.33.1",
"react-loader-spinner": "^6.0.0-0",
"react-multi-carousel": "^2.8.0",
"react-select": "^5.2.2",
"react-toastify": "^8.2.0",
"recharts": "^2.1.9",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@types/formidable": "^2.0.4",
"@types/node": "17.0.8",
"@types/ramda": "^0.27.64",
"@types/react": "17.0.38",
"@types/recharts": "^1.8.23",
"autoprefixer": "^10.4.2",
"babel-plugin-graphql-tag": "^3.3.0",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"husky": ">=6",
"lint-staged": ">=10",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"prettier": "2.6.0",
"tailwindcss": "^3.0.15",
"typescript": "4.5.4"
},
"lint-staged": {
"**/*.{ts,css,tsx}": "yarn format:write"
}
}