-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.6 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.6 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "swc-web-application",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3900",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest",
"check-types": "tsc --noEmit",
"prepare": "husky install",
"format": "next lint --fix && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore"
},
"dependencies": {
"@emotion/cache": "^11.11.5",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.1",
"@mui/material": "^6.4.1",
"@tinymce/tinymce-react": "^4.2.0",
"@types/dom-speech-recognition": "^0.0.4",
"axios": "^1.7.3",
"chart.js": "^4.4.7",
"chartjs-plugin-zoom": "^2.2.0",
"dayjs": "^1.11.13",
"dompurify": "^3.2.3",
"framer-motion": "^12.0.1",
"html-react-parser": "^5.2.2",
"lucide-react": "^0.473.0",
"next": "14.2.4",
"nookies": "^2.5.2",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-intersection-observer": "^9.13.0",
"react-player": "^2.16.0",
"react-query": "^3.39.3",
"react-slick": "^0.30.3",
"react-swipeable": "^7.0.1",
"react-toastify": "^10.0.5",
"react-webcam": "^7.2.0",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@types/axios": "^0.14.0",
"@types/chart.js": "^2.9.41",
"@types/cookie": "^0.6.0",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.0",
"@types/react-slick": "^0.23.13",
"@types/slick-carousel": "^1.6.40",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "12.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"tsc-alias": "^1.8.10",
"typescript": "5.1.6"
}
}