-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.01 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
{
"name": "cant-be-evil",
"version": "0.1.0",
"private": true,
"author": "sozonome",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up": "yarn upgrade-interactive",
"up-latest": "yarn up --latest",
"release": "cross-env HUSKY=0 standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.9",
"@chakra-ui/react": "^2.3.2",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fontsource/inter": "^4.5.12",
"@fontsource/poppins": "^4.5.9",
"@rainbow-me/rainbowkit": "^0.5.1",
"@types/styled-components": "^5.1.26",
"chakra-react-select": "^4.2.2",
"ethers": "^5.7.1",
"framer-motion": "^7.3.2",
"icomoon-react": "^3.0.0",
"next": "12.3.0",
"next-seo": "^5.5.0",
"nft.storage": "^7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.2",
"react-icons": "^4.4.0",
"react-image-gallery": "^1.2.9",
"styled-components": "^5.3.5",
"swiper": "^8.4.2",
"wagmi": "^0.6.5"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/cz-commitlint": "^17.1.2",
"@types/react": "^18.0.19",
"@types/react-image-gallery": "^1.0.5",
"@typescript-eslint/parser": "^5.36.2",
"commitizen": "^4.2.5",
"commitlint": "^17.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-config-next": "^12.3.0",
"eslint-config-sznm": "^1.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next-sitemap": "^3.1.22",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"typescript": "^4.8.3"
}
}