forked from Shyft-to/Shyft_X_Calyptus
-
Notifications
You must be signed in to change notification settings - Fork 884
/
package.json
69 lines (69 loc) · 2.08 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
{
"name": "collection-monitor-calyptus",
"version": "0.8.17",
"author": "CalyptusXShyft",
"repository": "https://github.com/solana-labs/wallet-adapter",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"files": [
"public",
"src",
".editorconfig",
".eslintrc.json",
".gitignore",
".prettierignore",
".prettierrc",
"LICENSE",
"next.config.js",
"next-env.d.ts",
"package.json",
"README.md",
"tsconfig.json"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc --build --verbose && next build",
"clean": "shx rm -rf .next .swc lib",
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"start": "next start",
"lint": "prettier --check 'src/{*,**/*}.{ts,tsx,js,jsx,json}' && eslint && next lint"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/next-js": "^2.1.4",
"@chakra-ui/react": "^2.7.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/cookie": "^5.0.4",
"@fontsource/inter": "^5.0.3",
"@fontsource/poppins": "^5.0.3",
"@shyft-to/js": "^0.2.16",
"@solana/spl-account-compression": "^0.1.8",
"@solana/wallet-adapter-base": "^0.9.9",
"@solana/wallet-adapter-react": "^0.15.8",
"@solana/wallet-adapter-react-ui": "^0.9.10",
"@solana/wallet-adapter-wallets": "^0.16.8",
"@solana/web3.js": "^1.77.3",
"@supabase/supabase-js": "^2.26.0",
"axios": "^1.4.0",
"framer-motion": "^10.12.18",
"next": "^12.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node-fetch": "^2.6.4",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"cross-env": "^7.0.3",
"eslint": "8.22.0",
"eslint-config-next": "^12.3.4",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"typescript": "~4.7.4"
}
}