forked from ph101pp/playdust-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 4.14 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
120
121
122
123
{
"name": "marketplace-frontend",
"private": true,
"scripts": {
"analyze": "ANALYZE=true next build",
"dev": "next dev",
"build": "yarn check:all && next build",
"start": "next start",
"lint": "eslint 'pages/**' 'src/App/**' 'src/api/**' 'scripts/**'",
"lint:fix": "yarn lint --fix",
"prettier:base": "prettier 'pages/**' 'src/App/**' 'src/api/**' 'scripts/**'",
"prettier:check": "yarn prettier:base --check",
"prettier:write": "yarn prettier:base --write",
"prettier:other": "prettier --write '**/*.(md|json)'",
"tsc:check": "tsc --noEmit",
"guidelines:check": "ts-node scripts/checkGuidelines.ts",
"guidelines:write": "ts-node scripts/writeGuidelines.ts",
"delete:emptyDirs": "find ./src -type d -empty -delete",
"hooks:install": "husky install",
"hooks:uninstall": "git config --unset core.hooksPath",
"check:all": "yarn lint && yarn tsc:check && yarn prettier:check && yarn guidelines:check ",
"fix:all": "yarn lint:fix && yarn tsc:check && yarn prettier:write && yarn guidelines:write"
},
"lint-staged": {
"**/*.(ts|tsx)": [
"eslint --fix",
"prettier --write",
"yarn guidelines:check"
],
"**/*.(md|json)": [
"prettier --write"
]
},
"dependencies": {
"@bonfida/spl-name-service": "0.1.22",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@metamask/jazzicon": "^2.0.0",
"@metaplex-foundation/mpl-token-metadata": "^0.0.2",
"@metaplex/js": "4.1.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.7.0",
"@mui/x-data-grid": "^5.5.1",
"@next/bundle-analyzer": "^12.2.0",
"@opensearch-project/opensearch": "^1.1.0",
"@react-hook/debounce": "^4.0.0",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "^0.2.0",
"@solana/spl-token-registry": "^0.2.2268",
"@solana/wallet-adapter-base": "^0.9.5",
"@solana/wallet-adapter-react": "^0.15.4",
"@solana/wallet-adapter-react-ui": "^0.9.6",
"@solana/wallet-adapter-wallets": "^0.16.1",
"@solana/web3.js": "^1.41.9",
"@types/ineum": "^216.0.0",
"axios": "^0.25.0",
"bignumber.js": "^9.0.2",
"bn.js": "^5.2.0",
"bs58": "^4.0.1",
"clsx": "^1.1.1",
"coingecko-api-v3": "^0.0.13",
"copy-text-to-clipboard": "^3.0.1",
"downshift": "^6.1.7",
"html-react-parser": "^1.4.10",
"intercept-stdout": "^0.1.2",
"js-cookie": "^3.0.1",
"luxon": "^2.3.0",
"match-sorter": "^6.3.1",
"nanoid": "^3.2.0",
"next": "12.2.0",
"qs": "^6.10.3",
"react": "17.0.2",
"react-custom-scrollbars-2": "^4.5.0",
"react-device-detect": "^2.2.2",
"react-dom": "17.0.2",
"react-flow-renderer": "^9.7.3",
"react-ga4": "^1.4.1",
"react-input-autosize": "^3.0.0",
"react-intersection-observer": "^8.33.1",
"react-json-view": "^1.21.3",
"react-use": "^17.3.2",
"react-virtualized": "^9.22.3",
"recoil": "^0.6.1",
"recoil-persist": "^4.0.0",
"superstruct": "^0.15.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.6",
"@types/async-retry": "^1.4.3",
"@types/fs-extra": "^9.0.13",
"@types/js-cookie": "^3.0.2",
"@types/luxon": "^2.0.9",
"@types/node": "17.0.8",
"@types/qs": "^6.9.7",
"@types/react": "17.0.38",
"@types/react-input-autosize": "^2.2.1",
"@types/react-virtualized": "^9.21.16",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"ansi-colors": "^4.1.1",
"async-retry": "^1.3.3",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"fast-glob": "^3.2.11",
"fastq": "^1.13.0",
"fs-extra": "^10.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.1",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"ts-node": "^10.4.0",
"typescript": "^4.6.4"
},
"version": "0.0.0"
}