-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 KB
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
{
"name": "nextjs-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/roboto": "^4.5.8",
"@hookform/resolvers": "^3.0.1",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.0",
"@mui/styled-engine-sc": "^5.12.0",
"@types/node": "18.15.11",
"@types/react": "18.0.33",
"@types/react-cookies": "^0.1.0",
"@types/react-dom": "18.0.11",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "10.4.14",
"axios": "^1.3.5",
"eslint-config-next": "13.3.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"formik": "^2.2.9",
"isomorphic-unfetch": "^4.0.2",
"js-cookie": "^3.0.1",
"mysql2": "^3.2.0",
"next": "13.3.0",
"next-cookies": "^2.0.3",
"postcss": "8.4.21",
"react": "18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-id-swiper": "^4.0.0",
"sass": "^1.62.0",
"styled-components": "^5.3.9",
"tailwindcss": "3.3.1",
"typescript": "5.0.3",
"yup": "^1.0.2"
},
"devDependencies": {
"@types/express-session": "^1.17.7",
"@types/js-cookie": "^3.0.3",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0"
}
}