forked from mmmgtc/meme-museum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.24 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
{
"name": "@mmm/meme-museum",
"version": "0.1.0",
"private": true,
"author": "Gitcoin Community",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start -p $PORT",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"format": "prettier --write src",
"up-latest": "yarn upgrade-interactive --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/anatomy": "^1.0.1",
"@chakra-ui/color-mode": "^1.3.2",
"@chakra-ui/icons": "^1.0.16",
"@chakra-ui/layout": "^1.5.1",
"@chakra-ui/react": "^1.6.10",
"@chakra-ui/theme-tools": "^1.2.2",
"@emotion/cache": "^11.4.0",
"@emotion/react": "^11.4.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@fontsource/acme": "^4.5.0",
"@fontsource/akaya-kanadaka": "^4.5.0",
"@fontsource/comic-mono": "^4.5.0",
"@fontsource/lexend": "^4.5.1",
"@fontsource/poppins": "^4.5.0",
"@fontsource/space-mono": "^4.5.0",
"@walletconnect/web3-provider": "^1.6.6",
"authereum": "^0.1.14",
"chakra-react-select": "^2.0.0-beta.2",
"chakra-ui-steps": "^1.3.0",
"compressorjs": "^1.1.1",
"dapper-ui": "^1.0.1",
"dotenv": "^10.0.0",
"ethers": "^5.5.1",
"framer-motion": "^4.1.17",
"multiparty": "^4.2.2",
"next": "^11.1.2",
"next-pwa": "^5.4.0",
"next-seo": "^4.28.1",
"react": "^17.0.2",
"react-blockies": "^1.4.1",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-hook-form": "^7.17.5",
"react-icons": "^4.3.1",
"react-parallax-tilt": "^1.5.73",
"react-tsparticles": "^1.37.4",
"web3.storage": "^3.3.4",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@commitlint/config-conventional": "^13.2.0",
"@types/react": "^17.0.30",
"commitlint": "^13.2.1",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-config-sznm": "^0.1.10",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"next-sitemap": "^1.6.184",
"prettier": "^2.4.1",
"standard-version": "^9.3.1",
"typescript": "^4.4.4"
}
}