-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.02 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
{
"name": "hanseithon-frontend",
"version": "1.0.1",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@sentry/nextjs": "^7.58.1",
"@tanstack/react-query": "^4.29.17",
"@tanstack/react-query-devtools": "^4.29.17",
"axios": "^1.4.0",
"dayjs": "^1.11.9",
"framer-motion": "^10.12.16",
"framer-motion-ticker": "^1.0.19",
"gray-matter": "^4.0.3",
"jose": "^4.14.4",
"next": "13.4.5",
"next-mdx-remote": "^4.4.1",
"next-seo": "^6.1.0",
"path-to-regexp": "^6.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-file-drop": "^3.1.6",
"react-hook-form": "^7.45.0",
"react-responsive": "^9.0.2",
"react-toastify": "^9.1.3",
"remark-gfm": "^3.0.1",
"sharp": "^0.32.1",
"zustand": "^4.3.8"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@types/axios": "^0.14.0",
"@types/node": "20.3.1",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "5.1.3"
},
"lint-staged": {
"**/*.+(ts|tsx)": [
"eslint --fix",
"yarn format"
]
}
}