-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.68 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.68 KB
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
{
"name": "dgp-mint-candy-machine",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install",
"lint": "tsc --noEmit && eslint .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
"prettier --write",
"git add"
]
},
"resolutions": {
"styled-components": "^5"
},
"dependencies": {
"@civic/solana-gateway-react": "^0.7.6",
"@emotion/is-prop-valid": "^1.1.3",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@hookform/resolvers": "^2.9.3",
"@identity.com/gateway-eth-ts": "^0.1.4",
"@metaplex-foundation/js": "^0.13.3",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.88",
"@mui/material": "^5.8.5",
"@mui/styled-engine-sc": "^5.8.0",
"@mui/styles": "^5.8.4",
"@project-serum/anchor": "^0.14.0",
"@solana/spl-token": "^0.1.8",
"@solana/wallet-adapter-base": "^0.9.5",
"@solana/wallet-adapter-material-ui": "^0.16.9",
"@solana/wallet-adapter-react": "^0.15.5",
"@solana/wallet-adapter-react-ui": "^0.9.7",
"@solana/wallet-adapter-wallets": "^0.16.1",
"@solana/web3.js": "^1.50.1",
"adm-zip": "^0.5.9",
"bs58": "^5.0.0",
"canvas-confetti": "^1.5.1",
"cookie": "^0.5.0",
"dotenv": "^16.0.1",
"firebase": "^9.8.4",
"formidable": "^2.0.1",
"next": "12.1.6",
"next-auth": "^4.6.1",
"next-transpile-modules": "^9.0.0",
"react": "18.2.0",
"react-countdown": "^2.3.2",
"react-dom": "18.2.0",
"react-hook-form": "^7.33.1",
"react-spring": "^9.4.5",
"react-topbar-progress-indicator": "^4.1.1",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"styled-components": "^5.3.5",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"unzipper": "^0.10.11",
"yup": "^0.32.11"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.6",
"@types/cookie": "^0.5.1",
"@types/formidable": "^2.0.5",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"babel-plugin-import": "^1.13.5",
"cypress": "^10.3.0",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"typescript": "4.7.4"
}
}