-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.52 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.52 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
71
72
73
74
75
76
77
78
{
"name": "blogy",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "env-cmd -f .env.prod vite",
"dev": "env-cmd -f .env.preprod vite",
"build": "tsc && vite build",
"build:preprod": "env-cmd -f .env.preprod vite build",
"build:prod": "env-cmd -f .env.prod vite build",
"lint": "eslint . --ext ts,tsx --fix --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.4",
"@mui/material": "^5.15.2",
"@mui/x-date-pickers": "^6.19.3",
"@reduxjs/toolkit": "^2.1.0",
"@tanstack/react-router": "^1.15.16",
"@tiptap/pm": "^2.3.1",
"@tiptap/react": "^2.3.1",
"axios": "^1.6.7",
"dayjs": "^1.11.10",
"env-cmd": "^10.1.0",
"i18next": "^23.8.2",
"i18next-browser-languagedetector": "^7.2.0",
"lodash": "^4.17.21",
"mui-tiptap-editor": "^0.1.75",
"parse": "^4.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-helmet-async": "^2.0.4",
"react-hook-form": "^7.49.2",
"react-i18next": "^14.0.1",
"react-icons": "^4.12.0",
"react-input-verification-code": "^1.0.2",
"react-redux": "^9.1.0",
"react-select": "^5.8.0",
"redux-persist": "^6.0.0",
"string-ts": "^2.1.0",
"styled-components": "^6.1.8",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@tanstack/router-devtools": "^1.15.19",
"@types/lodash": "^4.14.202",
"@types/parse": "^3.0.9",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react": "^4.2.1",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-prefer-arrow-functions": "^3.2.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "^3.2.2",
"typescript": "^5.2.2",
"vite": "5.0.8",
"vite-tsconfig-paths": "^4.3.1"
}
}