-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "dokkanbattlebattle",
"version": "0.1.0",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev --experimental-https",
"dev-http": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@floating-ui/react": "^0.24.1",
"@hookform/resolvers": "^3.1.0",
"@svgr/webpack": "^7.0.0",
"@vercel/analytics": "^1.4.1",
"axios": "^1.3.5",
"date-fns": "^2.29.3",
"i18next": "^22.4.14",
"lodash": "^4.17.21",
"next": "^14.2.23",
"next-i18next": "^13.2.2",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.43.9",
"react-i18next": "^12.2.0",
"react-query": "^3.39.3",
"react-toastify": "^9.1.3",
"yup": "^1.1.1"
},
"devDependencies": {
"eslint": "8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.23",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"stylelint": "^14.9.1",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-standard": "^26.0.0"
}
}