-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.5 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
{
"private": true,
"scripts": {
"dev-nd": "next dev",
"dev": "doppler setup -p solkudos -c dev && doppler run -- next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky install",
"pre-commit": "yarn run format && git add -A .",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@fontsource/inter": "^4.5.11",
"@metaplex-foundation/js": "^0.11.5",
"@project-serum/anchor": "0.17.0",
"@solana/spl-name-service": "^0.1.4",
"@solana/spl-token": "^0.2.0",
"@solana/wallet-adapter-base": "^0.9.5",
"@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.44.2",
"@types/uuid": "^8.3.4",
"arweave": "^1.11.4",
"axios": "^0.27.2",
"crypto": "^1.0.1",
"framer-motion": "^6.3.12",
"html2canvas": "^1.4.1",
"mongoose": "^6.4.0",
"next": "^12.1.6",
"next-seo": "^5.4.0",
"nextjs-progressbar": "^0.0.14",
"qs": "^6.10.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.1",
"react-hook-form": "^7.32.2",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.4.0",
"react-typed": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"commitlint": "^17.0.2",
"eslint": "^8.18.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"typescript": "^4.7.4"
},
"version": "1.0.0"
}