-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 987 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": "template-nextjs-tailwind",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "yarn dev",
"dev": "concurrently \"yarn:dev:*\"",
"dev:next": "next dev",
"dev:tailwind": "npx tailwindcss -i src/styles/style.css -o src/styles/build.css --minify --watch",
"build": "yarn build:tailwind && yarn build:next",
"build:next": "next build",
"build:tailwind": "npx tailwindcss -i src/styles/style.css -o src/styles/build.css --minify",
"update:all": "yarn upgrade-interactive",
"generate": "yarn prisma generate"
},
"dependencies": {
"next": "14.2.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "^3.4.10"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/node": "18.19.47",
"@types/react": "18.3.5",
"concurrently": "^8.2.2",
"postcss": "8.4.41",
"typescript": "5.5.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.17.0"
}
}