-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "mangatsu-web",
"license": "GPL3",
"private": true,
"version": "0.6.5",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:next": "next lint",
"lint": "eslint --ext js,jsx,ts,tsx . && prettier --check .",
"lint:fix": "eslint --ext js,jsx,ts,tsx --fix . && prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"next": "^14.0.4",
"react": "^18.2.0",
"react-comic-viewer": "^0.4.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.44.0",
"react-select": "^5.5.6",
"react-switch": "^7.0.0",
"react-toastify": "^10.0.5",
"reactjs-popup": "^2.0.5",
"sharp": "^0.33.1",
"swr": "^2.1.5"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"autoprefixer": "^10.4.12",
"eslint": "^8.57.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"postcss": "^8.4.18",
"prettier": "^3.0.3",
"tailwindcss": "^3.2.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.0.0"
},
"lint-staged": {
"*.{js,jsx,css,md,ts,tsx}": "prettier --write"
}
}