-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
93 lines (93 loc) · 3.12 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"vercel-build": "yarn build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs-build",
"lint": "eslint '**/*.{ts,tsx}' --cache",
"lint:fix": "eslint --fix --cache '**/*.{ts,tsx}'"
},
"resolutions": {
"@solana/web3.js": "^1.58.0"
},
"dependencies": {
"@amplitude/analytics-browser": "^1.1.1",
"@apollo/client": "^3.6.0",
"@babel/core": "^7.17.0",
"@solana-nft-programs/common": "1.0.0",
"@solana-nft-programs/namespaces": "1.0.0",
"@solana-nft-programs/namespaces-components": "1.0.0",
"@solana-nft-programs/payment-manager": "1.1.0",
"@solana-nft-programs/token-manager": "1.0.0",
"@coral-xyz/anchor": "^0.27.0",
"@emotion/babel-plugin": "^11.7.2",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@google/model-viewer": "^1.10.1",
"@headlessui/react": "^1.6.0",
"@metaplex-foundation/mpl-token-metadata": "^2.8.3",
"@mui/material": "^5.8.2",
"@napi-rs/canvas": "^0.1.28",
"@reach/dialog": "^0.16.2",
"@react-spring/web": "^9.4.4",
"@sentry/nextjs": "^7.11.1",
"@solana/buffer-layout": "^4.0.0",
"@solana/qr-code-styling": "^1.6.0-beta.0",
"@solana/spl-token": "^0.3.7",
"@solana/wallet-adapter-base": "^0.9.18",
"@solana/wallet-adapter-react": "rc",
"@solana/wallet-adapter-react-ui": "rc",
"@solana/wallet-adapter-wallets": "^0.19.5",
"@solana/web3.js": "^1.58.0",
"@tanstack/react-query": "^4.24.6",
"@types/bn.js": "^5.1.1",
"antd": "^4.18.5",
"bn.js": "^5.2.1",
"graphql": "^16.4.0",
"jsbi": "^4.1.0",
"next": "12.1.4",
"react": "^17.0.2",
"react-device-detect": "^2.1.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.3.1",
"react-responsive": "^9.0.0-beta.6",
"react-use-gesture": "^9.1.3"
},
"devDependencies": {
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.15.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"eslint": "^8.11.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.12",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.1",
"tailwindcss": "^3.0.23",
"typescript": "4.5.4",
"webpack": "^5.70.0"
}
}