-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.19 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
93
94
95
96
97
98
99
100
{
"name": "hato",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:local-api": "vite --mode local-api",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run --passWithNoTests",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"lint:pre-commit": "lint-staged",
"format": "prettier --write \"**/*.+(js|json|yml|ts|tsx)\"",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier -w -u"
]
},
"dependencies": {
"@chakra-ui/react": "^2.8.1",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource-variable/noto-sans-jp": "^5.0.17",
"@fontsource/inter": "^5.0.8",
"@fontsource/josefin-sans": "^5.0.12",
"@fontsource/noto-sans-jp": "^5.0.11",
"@mdx-js/rollup": "^3.0.0",
"@react-oauth/google": "^0.12.1",
"@tanstack/react-query": "^5.10.0",
"@tanstack/react-query-devtools": "^5.10.0",
"@tanstack/react-query-persist-client": "^5.10.0",
"axios": "^1.5.0",
"chakra-react-select": "^4.7.2",
"date-fns": "^2.29.3",
"framer-motion": "^10.16.4",
"googleapis": "^129.0.0",
"html2canvas": "^1.4.1",
"idb-keyval": "^6.2.1",
"jotai": "^2.6.0",
"jotai-devtools": "^0.7.1",
"pdfjs-dist": "3.11.174",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-ga4": "^2.0.0",
"react-helmet-async": "^2.0.1",
"react-icons": "^4.11.0",
"react-pdf": "^7.5.1",
"react-router-dom": "^6.16.0",
"react-simple-pull-to-refresh": "^1.3.3",
"react-textarea-autosize": "^8.5.3",
"react-virtuoso": "^4.5.1",
"remark-gfm": "^4.0.0",
"use-debounce": "^10.0.0",
"use-seconds": "^1.7.0",
"workbox-core": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0"
},
"devDependencies": {
"@swc-jotai/debug-label": "^0.1.0",
"@types/node": "^20.6.1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitejs/plugin-react-swc": "^3.3.2",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.0.3",
"typescript": "5.3.2",
"vite": "^5.0.4",
"vite-plugin-fonts": "^0.7.0",
"vite-plugin-pwa": "^0.17.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.4"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}