-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.97 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "nextjs-web3-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo -p 3001",
"build": "next build",
"start": "next start",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:pretty": "pretty-quick --staged",
"lint": "pnpm lint:lint-staged && pnpm lint:pretty",
"prisma:push": "npx prisma db push",
"prisma:generate": "npx prisma generate",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"log": "npx conventional-changelog --config ./node_modules/@commitlint/cli -i CHANGELOG.md -s -r 0"
},
"browserslist": [
"> 1%",
"not ie 11",
"not op_mini all"
],
"dependencies": {
"@ant-design/icons": "^5.3.0",
"@ducanh2912/next-pwa": "^9.7.2",
"@formatjs/intl-localematcher": "^0.2.32",
"@prisma/client": "^5.4.2",
"antd": "^5.14.1",
"axios": "^1.6.8",
"cross-env": "^7.0.3",
"ethers": "^6.8.0",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"markdown-it": "^14.0.0",
"negotiator": "^0.6.3",
"next": "^13.5.6",
"nprogress": "^0.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-circular-progressbar": "^2.1.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-spring": "^9.7.3",
"server-only": "^0.0.1",
"swr": "^2.2.4",
"tailwind-variants": "^0.1.14",
"typescript": "^5.2.2",
"zustand": "^4.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.8.7",
"@types/nprogress": "^0.2.2",
"@types/prop-types": "^15.7.11",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"autoprefixer": "^10.4.16",
"conventional-changelog-cli": "^2.2.2",
"cssnano": "^5.1.15",
"eslint": "^8.52.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"next-transpile-modules": "^10.0.1",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"postcss-import": "^15.1.0",
"postcss-scss": "^4.0.9",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"prisma": "^5.4.2",
"stylelint": "^14.16.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.3.3"
}
}