-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.54 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
71
72
73
74
75
76
77
78
79
{
"name": "nucleoid.com",
"author": "NucTeam",
"version": "0.0.0",
"description": "Vite Starter & JavaScript",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite preview",
"build": "vite build",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"rm:all": "rm -rf node_modules .next out dist build",
"re:start": "yarn rm:all && yarn install && yarn dev",
"re:build": "yarn rm:all && yarn install && yarn build",
"re:build-npm": "npm run rm:all && npm install && npm run build",
"dev:host": "vite --host"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.2",
"@iconify/react": "^4.1.1",
"@mui/lab": "^5.0.0-alpha.155",
"@mui/material": "^5.14.20",
"@mui/system": "^5.14.20",
"@mui/x-date-pickers": "^6.18.4",
"date-fns": "^2.30.0",
"emojione": "^4.5.0",
"framer-motion": "^10.16.16",
"google-map-react": "^2.2.1",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"mui-one-time-password-input": "^2.0.1",
"nprogress": "^0.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-countup": "^6.5.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.3",
"react-hook-form": "^7.48.2",
"react-lazy-load-image-component": "^1.6.0",
"react-markdown": "^9.0.1",
"react-player": "^2.13.0",
"react-router": "^6.20.1",
"react-router-dom": "^6.20.1",
"react-slick": "^0.29.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"simplebar-react": "^3.2.4",
"slick-carousel": "^1.8.1",
"stylis": "^4.3.0",
"stylis-plugin-rtl": "^2.1.1",
"yet-another-react-lightbox": "^3.15.6",
"yup": "^1.3.2"
},
"devDependencies": {
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vite": "^5.0.7",
"vite-plugin-checker": "^0.6.2"
}
}