-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.66 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.66 KB
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": "rezervo-web",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"prod": "run-s build start",
"prettier": "prettier --write '**/*.{js,mjs,ts,tsx,md,json,yaml,css}' --ignore-path=.gitignore",
"prettier:check": "prettier --check '**/*.{js,mjs,ts,tsx,md,json,yaml,css}' --ignore-path=.gitignore",
"lint": "eslint --ignore-pattern '.next/*' --ignore-pattern 'next-env.d.ts' --ignore-pattern 'public/sw.js'",
"lint:fix": "eslint --fix --ignore-pattern '.next/*' --ignore-pattern 'next-env.d.ts' --ignore-pattern 'public/sw.js'",
"typecheck": "tsc --noEmit",
"check": "run-p prettier:check lint typecheck",
"fix": "run-s prettier lint:fix",
"review": "run-s check prod"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@khmyznikov/pwa-install": "^0.5.8",
"@mui/icons-material": "^6.4.2",
"@mui/material": "^6.4.2",
"@mui/material-nextjs": "^6.4.2",
"@mui/x-date-pickers": "^7.28.3",
"@serwist/next": "^9.1.1",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"luxon": "^3.7.1",
"next": "15.5.7",
"react": "^19.1.1",
"react-device-detect": "^2.2.3",
"react-dom": "^19.1.1",
"react-dropzone": "^14.3.8",
"react-oauth2-code-pkce": "^1.23.1",
"react-snowfall": "^2.3.0",
"sharp": "^0.34.3",
"swr": "^2.3.6",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@next/eslint-plugin-next": "^15.5.2",
"@tsconfig/next": "^2.0.3",
"@tsconfig/strictest": "^2.0.5",
"@types/js-cookie": "^3.0.6",
"@types/luxon": "^3.7.1",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@types/react-swipeable-views": "^0.13.6",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "^5.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"serwist": "^9.1.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
}
}