This repository has been archived by the owner on May 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.58 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
{
"name": "strata-marketplace",
"version": "0.8.0",
"author": "Strata Maintainers",
"repository": "https://github.com/solana-labs/wallet-adapter",
"license": "Apache-2.0",
"files": [
"pages",
"public",
"styles",
".eslintrc.json",
"LICENSE",
"next.config.js",
"next-env.d.ts",
"README.md",
"tsconfig.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "shx rm -rf .next",
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "yarn clean && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chakra-ui/react": "^1.8.1",
"@hookform/resolvers": "^2.8.8",
"@metaplex-foundation/mpl-token-metadata": "^1.1.0",
"@solana/spl-token": "^0.1.8",
"@solana/wallet-adapter-react": "^0.15.2",
"@solana/wallet-adapter-react-ui": "^0.9.1",
"@strata-foundation/react": "3.1.1-alpha.2+2274c6b",
"@types/node-localstorage": "^1.3.0",
"crypto": "^1.0.1",
"next": "12.0.7",
"node-localstorage": "^2.2.1",
"react": "17.0.2",
"react-async-hook": "^4.0.0",
"react-dom": "17.0.2",
"react-hook-form": "^7.25.1",
"react-hot-toast": "^2.2.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "17.0.8",
"@types/react": "17.0.38",
"eslint": "^8.6.0",
"eslint-config-next": "^12.0.7",
"shx": "^0.3.3",
"typescript": "~4.4.4"
}
}