-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.16 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
{
"name": "app",
"version": "0.1.0",
"private": true,
"scripts": {
"clear": "rimraf .next",
"dev": "yarn clear && next dev",
"build": "env-cmd -f .env.development next build",
"build-start": "yarn clear && next build && next start",
"start": "next start",
"build-staging": "env-cmd -f .env.staging next build",
"build-production": "env-cmd -f .env.production next build",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@react-page/editor": "^3.1.1",
"@react-page/plugins-background": "^3.1.1",
"@react-page/plugins-html5-video": "^3.1.1",
"@react-page/plugins-image": "^3.1.1",
"@react-page/plugins-slate": "^3.1.1",
"@react-page/plugins-spacer": "^3.1.1",
"@react-page/plugins-video": "^3.1.1",
"@tailwindcss/line-clamp": "^0.2.1",
"axios": "^0.27.2",
"axios-auth-refresh": "^3.3.3",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"cookie": "^0.4.1",
"env-cmd": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"feed": "^4.2.2",
"next": "^12.2.5",
"nextjs-progressbar": "^0.0.13",
"prettier": "^2.3.0",
"qrcode.react": "^3.1.0",
"react": "^17.0.2",
"react-calendar": "^3.4.0",
"react-datepicker": "^4.2.1",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.2",
"react-facebook": "^8.1.4",
"react-facebook-login": "^4.1.1",
"react-google-login": "^5.2.2",
"react-id-swiper": "^4.0.0",
"react-otp-input": "^2.4.0",
"react-player": "^2.9.0",
"react-share": "^4.4.0",
"sass": "^1.43.4",
"swiper": "^6.6.2",
"swr": "^0.5.6",
"uniforms": "^3.5.1",
"uuidv4": "^6.2.13",
"video.js": "^7.14.3",
"videojs-contrib-hls": "^5.15.0",
"yarn": "^1.22.10"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"postcss": "^8.2.15",
"tailwindcss": "^2.1.2"
}
}