-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.34 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "piotrdoniak.com",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && npm run prisma:migrate && npm run typecheck && npm run format:fix && npm run lint:fix && next build && npm run sitemap:generate",
"start": "next start",
"lint": "eslint --ext .js,.cjs,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.cjs,.ts,.tsx . --fix",
"format": "prettier --plugin-search-dir . --check .",
"format:fix": "prettier --plugin-search-dir . --write .",
"sitemap:generate": "next-sitemap",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run format",
"prisma:deploy": "npx prisma migrate deploy && npx prisma db push",
"prisma:migrate": "npx prisma db push",
"prisma:migration": "npx prisma migrate dev --create-only --name"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.325.0",
"@chakra-ui/react": "^2.6.1",
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "^4.13.0",
"@tinymce/tinymce-react": "^4.3.0",
"@types/google.accounts": "^0.0.7",
"animate.css": "^4.1.1",
"aws-sdk": "^2.1370.0",
"boring-avatars": "^1.7.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"dayjs": "^1.11.7",
"filepond": "^4.30.4",
"filepond-plugin-image-crop": "^2.0.6",
"filepond-plugin-image-edit": "^1.6.3",
"filepond-plugin-image-exif-orientation": "^1.0.11",
"filepond-plugin-image-preview": "^4.6.11",
"filepond-plugin-image-resize": "^2.0.10",
"filepond-plugin-image-transform": "^3.8.7",
"formidable": "^2.1.1",
"framer-motion": "^10.12.7",
"ioredis": "^5.3.2",
"next": "13.3.4",
"next-absolute-url": "^1.2.2",
"next-auth": "^4.22.1",
"next-sitemap": "^4.0.9",
"nprogress": "^0.2.0",
"prisma": "^4.13.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-filepond": "^7.1.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.8.0",
"react-query": "^3.39.3",
"react-spinners": "^0.13.8",
"sharp": "^0.32.1",
"slugify": "^1.6.6",
"swr": "^2.1.5",
"zod": "^3.21.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.1",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^18.16.3",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-no-duplicates-prefix-resolved-path": "^2.0.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"sass": "^1.62.1",
"schema-dts": "^1.1.2",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
}
}