-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.25 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "postgres-prisma",
"repository": "https://github.com/vercel/examples.git",
"license": "MIT",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": " next dev --turbo",
"build": "prisma generate && prisma db push && prisma db seed && next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@mantine/carousel": "^6.0.11",
"@mantine/core": "^6.0.11",
"@mantine/form": "^6.0.11",
"@mantine/hooks": "^6.0.11",
"@mantine/modals": "^6.0.11",
"@mantine/notifications": "^6.0.11",
"@mantine/spotlight": "^6.0.11",
"@prisma/client": "4.14.1",
"@sentry/react": "^7.94.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/node": "20.2.5",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"@types/react-image-gallery": "^1.2.4",
"@types/react-syntax-highlighter": "^15.5.7",
"autoprefixer": "10.4.14",
"bcryptjs": "^2.4.3",
"daisyui": "^3.0.3",
"embla-carousel-react": "8.0.0-rc05",
"eslint": "8.41.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ms": "^2.1.3",
"next": "13.4.4",
"next-auth": "^4.22.1",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.9.0",
"react-image-gallery": "^1.3.0",
"react-markdown": "^8.0.7",
"react-query": "^3.39.3",
"react-syntax-highlighter": "^15.5.0",
"tailwindcss": "3.3.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@types/ms": "^0.7.31",
"prisma": "^4.14.1",
"turbo": "^1.9.9"
}
}