-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.33 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
{
"name": "rezervo-web",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev",
"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": "next lint --ignore-path=.gitignore",
"lint:fix": "next lint --fix --ignore-path=.gitignore",
"typecheck": "tsc --noEmit",
"check": "run-p prettier:check lint typecheck",
"fix": "run-s prettier lint:fix",
"review": "run-s check prod"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@khmyznikov/pwa-install": "^0.3.7",
"@mui/icons-material": "^6.2.1",
"@mui/lab": "^6.0.0-beta.20",
"@mui/material": "^6.2.1",
"@mui/x-date-pickers": "^7.23.3",
"@serwist/next": "^9.0.11",
"js-cookie": "^3.0.5",
"luxon": "^3.5.0",
"next": "14.2.2",
"nuqs": "^2.2.3",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.5",
"react-snowfall": "^2.2.0",
"react-swipeable-views": "^0.14.0",
"sharp": "^0.33.5",
"swr": "^2.2.5",
"zustand": "^5.0.2"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.2",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/react-swipeable-views": "^0.13.6",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"serwist": "^9.0.11",
"typescript": "^5.7.2"
}
}