-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
139 lines (139 loc) · 4.68 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@grape-labs/grape-drive",
"version": "1.1.020",
"author": "Grape devDAO",
"repository": "https://github.com/grape-labs/grape-drive",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"files": [
"src",
".editorconfig",
".eslintignore",
".eslintrc.json",
".gitignore",
".prettierignore",
".prettierrc",
"LICENSE",
"package.json",
"tsconfig.json"
],
"scripts": {
"clean": "shx rm -rf dist .parcel-cache",
"build": "yarn clean && parcel build src/index.html --no-source-maps",
"start": "yarn clean && parcel src/index.html",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint": "eslint . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint:fix": "eslint --fix . && yarn fmt",
"nuke": "shx rm -rf node_modules yarn.lock"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0"
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.8.1",
"@metaplex-foundation/mpl-core": "^0.6.1",
"@mui/icons-material": "^5.0.0",
"@mui/lab": "^5.0.0-alpha.90",
"@mui/material": "^5.9.0",
"@project-serum/anchor": "^0.18.2",
"@project-serum/common": "^0.0.1-beta.3",
"@react-native-async-storage/async-storage": "^1.15.17",
"@shadow-drive/sdk": "3.0.4",
"@solana/spl-token": "0.1.8",
"@solana/spl-token-registry": "^0.2.4046",
"@solana/spl-token-v2": "npm:@solana/[email protected]",
"@solana/wallet-adapter-base": "^0.9.8",
"@solana/wallet-adapter-material-ui": "^0.16.8",
"@solana/wallet-adapter-react": "^0.15.7",
"@solana/wallet-adapter-wallets": "^0.16.7",
"@solana/web3.js": "^1.47.3",
"@solflare-wallet/pfp": "^0.0.6",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/react-copy-to-clipboard": "^5.0.1",
"@types/react-router-dom": "^5.1.6",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"bn.js": "^5.1.3",
"borsh": "^0.7.0",
"bs58": "^4.0.1",
"commander": "^8.3.0",
"ethers": "^5.5.4",
"i18next": "^21.8.2",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.0",
"lodash-es": "^4.17.21",
"loglevel": "^1.8.0",
"moment": "^2.29.4",
"notistack": "^2.0.4",
"prop-types": "^15.7.2",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.16.1",
"react-infinite-scroll-component": "^6.1.0",
"react-jazzicon": "^1.0.3",
"react-material-file-upload": "^0.0.4",
"react-router": "^6.3.0",
"react-router-dom": "^6.2.1",
"react-scripts": "^5.0.1",
"react-share": "^4.4.0",
"react-simple-image-viewer": "^1.1.1",
"tweetnacl": "^1.0.3",
"web-vitals": "^1.1.2",
"web3modal": "^1.9.5",
"weighted": "^1.0.0",
"yarn": "^1.22.18",
"zustand": "^3.6.8"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.6.2",
"@parcel/resolver-glob": "^2.5.0",
"@parcel/transformer-less": "2.6.2",
"@parcel/transformer-webmanifest": "2.6.2",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/eslint": "^8.2.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^24.9.1",
"@types/node": "^17.0.17",
"@types/prettier": "^2.4.3",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"autoprefixer": "^10.4.7",
"browserify-zlib": "^0.2.0",
"concurrently": "^6.1.0",
"crypto-browserify": "^3.12.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.1.0",
"https-browserify": "^1.0.0",
"nodemon": "^2.0.7",
"parcel": "^2.3.1",
"path-browserify": "^1.0.1",
"prettier": "^2.5.1",
"querystring-es3": "^0.2.1",
"shx": "^0.3.4",
"stream-http": "^3.2.0",
"tslib": "^2.3.1"
},
"resolutions": {
"@types/react": "17.0.40"
},
"staticFiles": {
"staticPath": [
"static",
"public"
],
"watcherGlob": "**"
}
}