-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.49 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
{
"name": "optimizex",
"version": "0.1.0",
"private": true,
"description": "This repository contains the code for the fullstack client application of OptimizeX. It includes the NextJS, TypeScript, MongoDB, NextAuth, React, and TailwindCSS implementation, as well as the frontend components, pages, and logic for uploading and receiving optimized images.",
"repository": {
"type": "git",
"url": "git+https://github.com/BharathxD/OptimizeX.git"
},
"author": "BharathxD",
"license": "ISC",
"bugs": {
"url": "https://github.com/BharathxD/OptimizeX/issues"
},
"homepage": "https://github.com/BharathxD/OptimizeX#readme",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"typecheck": "tsc --noEmit",
"format:w": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:c": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "4.15.0",
"@types/node": "20.2.5",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"argon2": "^0.30.3",
"autoprefixer": "10.4.14",
"aws-sdk": "^2.1389.0",
"axios": "^1.4.0",
"base64-js": "^1.5.1",
"blob-util": "^2.0.2",
"class-variance-authority": "^0.6.0",
"client-only": "^0.0.1",
"clsx": "^1.2.1",
"date-fns-tz": "^2.0.0",
"downloadjs": "^1.4.7",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"express-async-handler": "^1.2.0",
"file-saver": "^2.0.5",
"http-status-codes": "^2.2.0",
"lodash": "^4.17.21",
"next": "13.4.1",
"next-auth": "^4.22.1",
"postcss": "8.4.24",
"prisma": "^4.15.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.44.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.9.0",
"react-query": "^3.39.3",
"react-spinners": "0.13.8",
"tailwind-merge": "^1.12.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4",
"uuid": "^9.0.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "github:ianvs/prettier-plugin-sort-imports",
"@types/downloadjs": "^1.4.3",
"@types/file-saver": "^2.0.5",
"@types/gtag.js": "^0.0.12",
"@types/lodash": "^4.14.195",
"@types/prettier": "^3.0.0",
"@types/uuid": "^9.0.1",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.4.1"
}
}