-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.93 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
{
"name": "private-sale-foxtrot",
"version": "1.0.0",
"private": true,
"author": "dapp-team",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"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-latest": "yarn upgrade-interactive --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.7.3",
"@emotion/cache": "^11.6.0",
"@emotion/react": "^11.7.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@ethersproject/providers": "^5.1.2",
"@ethersproject/units": "^5.1.0",
"@fontsource/lexend": "^4.5.1",
"@fontsource/montserrat": "^4.5.1",
"@web3-react/core": "latest",
"@web3-react/injected-connector": "latest",
"@web3-react/network-connector": "latest",
"@web3-react/walletconnect-connector": "^6.2.8",
"@web3-react/walletlink-connector": "latest",
"blockies-ts": "^1.0.0",
"ethers": "^5.5.2",
"framer-motion": "^4.1.17",
"next": "^12.0.7",
"next-pwa": "^5.4.4",
"next-seo": "^4.28.1",
"notiflix": "^3.2.2",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-markdown": "^8.0.2",
"rehype-raw": "^6.1.1",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@commitlint/config-conventional": "^15.0.0",
"@types/react": "^17.0.37",
"commitlint": "^15.0.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.7",
"eslint-config-sznm": "^0.1.13",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"next-sitemap": "^1.6.203",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"typescript": "^4.5.3"
}
}