-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "csereal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "PHASE=local NODE_ENV=development node server.mjs",
"build:local": "PHASE=local next build",
"start:local": "PHASE=local NODE_ENV=production node server.mjs",
"build:beta": "PHASE=beta next build",
"start:beta": "PHASE=beta NODE_ENV=production node server.mjs",
"build:prod": "PHASE=prod next build",
"start:prod": "PHASE=prod NODE_ENV=production node server.mjs",
"prepare": "husky",
"postbuild": "next-sitemap",
"knip": "knip"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^6.1.10",
"@mui/x-date-pickers": "^7.23.1",
"@svgr/webpack": "^8.1.0",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"autolinker": "^4.0.0",
"autoprefixer": "10.4.14",
"bezier-easing": "^2.1.0",
"express": "^4.19.2",
"file-loader": "^6.2.0",
"next": "15.0.4",
"next-intl": "^3.26.0",
"next-sitemap": "^4.2.3",
"postcss": "8.4.24",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.53.2",
"react-toastify": "^10.0.6",
"sharp": "^0.32.5",
"suneditor": "^2.46.3",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.15.0",
"@types/eslint": "^9.6.1",
"@types/express": "^4.17.21",
"@types/node": "^22.10.1",
"eslint": "^9.15.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.12.0",
"husky": "^9.1.7",
"knip": "^5.39.2",
"lint-staged": "^15.2.2",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.5.12",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"overrides": {
"eslint-plugin-react-hooks": {
"eslint": "^9.0.0"
},
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1"
}
}