-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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
{
"name": "starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.2",
"@mui/x-date-pickers": "^6.11.2",
"autoprefixer": "10.4.14",
"aws-sdk": "^2.1442.0",
"axios": "^1.4.0",
"bootstrap": "^5.3.1",
"dayjs": "^1.11.9",
"framer-motion": "^10.12.4",
"multer": "^1.4.5-lts.1",
"next": "^13.5.4",
"next-connect": "0.12.1",
"postcss": "8.4.26",
"react": "18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.4",
"react-otp-input": "^3.0.4",
"react-toastify": "^9.1.3",
"swiper": "^10.0.4",
"tailwindcss": "3.3.3"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.92",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).",
"main": "next.config.js",
"author": "",
"license": "ISC"
}