-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 844 Bytes
/
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
{
"name": "nextjs-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm run build:tailwind && npm run dev",
"build:tailwind": "tailwind build styles/globals.css -o styles/tailwind.css"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@tailwindcss/forms": "^0.3.3",
"antd": "^4.16.13",
"ethers": "^5.4.7",
"next": "^10.2.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-multi-carousel": "^2.6.5"
},
"devDependencies": {
"autoprefixer": "^10.3.5",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"postcss": "^8.3.8",
"tailwindcss": "^2.2.15"
}
}