-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.66 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.470.0",
"@aws-sdk/lib-dynamodb": "^3.470.0",
"@material-tailwind/react": "^2.1.5",
"@react-spring/web": "^9.7.3",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/react-query": "^5.12.2",
"@tanstack/react-query-devtools": "^5.13.3",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/react-syntax-highlighter": "^15.5.11",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"axios": "^1.6.2",
"babel-jest": "^29.7.0",
"eslint-config-prettier": "^9.1.0",
"framer-motion": "^10.16.16",
"lodash-es": "^4.17.21",
"next": "14.0.3",
"next-router-mock": "^0.9.10",
"react": "^18",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18",
"react-hook-form": "^7.48.2",
"react-lottie-player": "^1.5.5",
"react-markdown": "^9.0.1",
"react-slick": "^0.30.2",
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0",
"rehype-external-links": "^3.0.0",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.0",
"sweetalert2": "^11.10.1",
"swiper": "^11.0.7",
"ts-jest": "^29.1.1",
"xlsx": "^0.18.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.5",
"@types/gsap": "^3.0.0",
"@types/jest": "^29.5.11",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18",
"@types/react-slick": "^0.23.13",
"@types/testing-library__jest-dom": "^6.0.0",
"autoprefixer": "^10.0.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.0.3",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^4.0.2",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prettier": "^3.1.0",
"react-testing-library": "^8.0.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}