generated from riccardogiorato/template-nextjs-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "newtab",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"yarn:dev:*\"",
"dev:next": "yarn generate && 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",
"lint": "next lint",
"studio": "yarn prisma studio",
"migrate": "yarn prisma migrate dev",
"generate": "yarn prisma generate",
"setup": "yarn vercel env pull"
},
"dependencies": {
"@googleapis/calendar": "^1.0.2",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^3.12.0",
"next": "12.1.6",
"next-auth": "^4.3.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"swr": "^1.3.0",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"concurrently": "^7.2.1",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"postcss": "^8.4.14",
"prisma": "^3.12.0",
"typescript": "4.7.2",
"vercel": "^25.0.0"
}
}