-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
41
42
43
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"deploy": "npm run build && touch out/.nojekyll && git add out/ && git commit -m \"Deploy to gh-pages\" && git subtree push --prefix out origin gh-pages"
},
"dependencies": {
"@auth/core": "^0.8.2",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "4.15.0",
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"@vercel/analytics": "^1.1.1",
"autoprefixer": "10.4.14",
"eslint": "8.42.0",
"eslint-config-next": "13.4.4",
"gray-matter": "^4.0.3",
"next": "^13.4.5",
"next-auth": "^4.12.3",
"nodemailer": "^6.9.3",
"papaparse": "^5.4.1",
"postcss": "8.4.24",
"prisma": "4.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-type-animation": "^3.0.1",
"rehype-raw": "^6.1.1",
"tabler-icons-react": "^1.56.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.3",
"vercel": "^32.4.1"
},
"devDependencies": {
"@types/papaparse": "^5.3.7"
}
}