-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 826 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
31
32
33
34
{
"name": "Nextjs Template with tailwindcss and React 18",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"autoprefixer": "^10.4.13",
"axios": "^1.3.4",
"i18next": "^22.4.13",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^12.2.0",
"styled-components": "^6.1.1",
"swr": "^2.1.0",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.21",
"postcss-nesting": "^11.2.2",
"prettier": "^3.1.0",
"tailwindcss": "^3.2.7"
}
}