-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 918 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
35
36
37
38
39
40
41
42
43
{
"name": "next-tailwind-example",
"version": "3.0.0",
"description": "A minimalist NextJS + Tailwind CSS kit",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "echo \"Error: no test setup specified\" && exit 1"
},
"keywords": [
"nextjs",
"tailwindcss",
"example",
"setup",
"minimalist"
],
"author": "Oleksandr Hrishchuk <[email protected]>",
"license": "MIT",
"dependencies": {
"next": "^15.0.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.15"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"engines": {
"node": ">=12.13"
},
"volta": {
"node": "14.15.1",
"npm": "6.14.8"
}
}