-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.3 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "drag-nest",
"author": "Hardik Desai",
"version": "5.0.0",
"description": "Drag & Drop Web Builder",
"private": true,
"scripts": {
"dev": "next dev -p 8084",
"start": "next start",
"build": "next build",
"export": "yarn build && next export -o _static",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx .",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"clear-all": "rm -rf .next .swc _static out node_modules",
"re-start": "rm -rf .next .swc _static out node_modules && yarn install && yarn dev",
"re-build": "rm -rf .next .swc _static out node_modules && yarn install && yarn build"
},
"dependencies": {
"@auth0/auth0-react": "^2.1.0",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fullcalendar/core": "^6.1.9",
"@hookform/resolvers": "^3.1.0",
"@iconify/react": "^4.1.0",
"@mui/icons-material": "^5.14.16",
"@mui/lab": "^5.0.0-alpha.132",
"@mui/material": "^5.13.3",
"@reduxjs/toolkit": "^1.9.7",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.4.0",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^2.30.0",
"firebase": "^10.4.0",
"framer-motion": "^10.12.16",
"grapesjs": "^0.21.7",
"handlebars": "^4.7.8",
"lodash": "^4.17.21",
"next": "^13.5.6",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.44.3",
"react-lazy-load-image-component": "^1.6.0",
"react-redux": "^8.1.3",
"react-syntax-highlighter": "^15.5.0",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"simplebar-react": "^3.2.4",
"stylis": "^4.2.0",
"stylis-plugin-rtl": "^2.1.1",
"uuid": "^9.0.1",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-syntax-flow": "^7.21.4",
"@babel/plugin-transform-react-jsx": "^7.22.3",
"@svgr/webpack": "^8.0.1",
"@types/autosuggest-highlight": "^3.2.0",
"@types/lodash": "^4.14.195",
"@types/node": "^20.2.5",
"@types/nprogress": "^0.2.0",
"@types/numeral": "^2.0.4",
"@types/prismjs": "^1.26.2",
"@types/react": "^18.2.8",
"@types/react-lazy-load-image-component": "^1.5.3",
"@types/react-syntax-highlighter": "^15.5.9",
"@types/stylis": "^4.2.0",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"autoprefixer": "^10.4.16",
"encoding": "^0.1.13",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.5",
"typescript": "^5.1.3"
}
}