-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.16 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": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch --passWithNoTests",
"test:ci": "jest --ci --passWithNoTests",
"postinstall": "husky install",
"format": "prettier --cache --write .",
"lint": "next lint"
},
"lint-staged": {
"**/*.{tsx,ts,jsx,js}": [
"prettier --write"
]
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@reduxjs/toolkit": "^1.9.5",
"@types/lodash": "^4.14.195",
"@types/node": "18.15.5",
"@types/react": "18.0.28",
"@types/react-datepicker": "^4.10.0",
"@types/react-dom": "18.0.11",
"@types/react-paginate": "^7.1.1",
"@types/react-redux": "^7.1.25",
"@types/react-slick": "^0.23.10",
"@types/redux-logger": "^3.0.9",
"aws-sdk": "^2.1413.0",
"axios": "^1.3.6",
"date-fns": "^2.29.3",
"dayjs": "^1.11.10",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"framer-motion": "^10.12.4",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"lottie": "^0.0.1",
"lottie-react": "^2.4.0",
"next": "13.2.4",
"quill-image-resize-module-ts": "^3.0.3",
"react": "18.2.0",
"react-datepicker": "^4.11.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-paginate": "^8.1.5",
"react-quill": "^2.0.0",
"react-redux": "^8.0.5",
"react-slick": "^0.29.0",
"sass": "^1.61.0",
"slick-carousel": "^1.8.1",
"swr": "^2.2.4",
"typescript": "5.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@emotion/jest": "^11.10.5",
"@testing-library/dom": "^9.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/uuid": "^9.0.2",
"babel-jest": "^29.5.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.3",
"prettier": "2.8.5",
"ts-jest": "^29.0.5"
}
}