-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "octolink",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"pscale:dev": "pscale connect octolink dev --port 3309",
"pscale:shadow": "pscale connect octolink shadow --port 3310",
"pscale:dr": "pscale deploy-request create octolink dev"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@next-auth/prisma-adapter": "^0.5.2-next.19",
"@prisma/client": "^3.7.0",
"autoprefixer": "^10.4.0",
"next": "12.0.7",
"next-auth": "^4.0.2",
"next-seo": "^4.28.1",
"parse-link-header": "^1.0.1",
"postcss": "^8.4.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"tailwindcss": "^3.0.2"
},
"devDependencies": {
"@types/node": "16.11.12",
"@types/parse-link-header": "^1.0.1",
"@types/react": "17.0.37",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"prisma": "^3.7.0",
"typescript": "4.5.2"
}
}