-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.78 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
80
81
82
83
84
85
86
87
88
89
{
"name": "mi-calendar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "npx next lint --fix",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install"
},
"dependencies": {
"@cypress/react": "^5.12.4",
"@cypress/webpack-dev-server": "^1.8.4",
"@devexpress/dx-react-core": "^3.0.4",
"@devexpress/dx-react-scheduler": "^3.0.4",
"@devexpress/dx-react-scheduler-material-ui": "^3.0.4",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@fontsource/nunito-sans": "^4.5.6",
"@material-ui/pickers": "^3.3.10",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.94",
"@mui/material": "^5.10.0",
"@mui/x-date-pickers": "^5.0.0-beta.5",
"classnames": "^2.3.1",
"moment": "^2.29.4",
"next": "12.2.5",
"next-images": "^1.8.4",
"next-seo": "^5.4.0",
"next-themes": "^0.1.1",
"react": "^18.2.0",
"react-calendar": "^3.7.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.1",
"react-modal": "^3.15.1",
"react-toastify": "^9.0.8",
"start-server-and-test": "^1.14.0",
"tailwind-scrollbar": "^1.3.1",
"uuid": "^8.3.2",
"wait-on": "^6.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.4",
"@svgr/webpack": "^6.3.1",
"@types/classnames": "^2.3.1",
"@types/moment": "^2.13.0",
"@types/node": "18.7.8",
"@types/react": "^18.0.17",
"@types/react-calendar": "^3.5.2",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"autoprefixer": "^10.4.4",
"cross-env": "^7.0.3",
"cssnano": "^5.1.7",
"cypress": "^10.4.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"tailwindcss": "^3.1.8",
"typescript": "4.7.4",
"webpack": "^5.72.0",
"webpack-dev-server": "^4.8.1"
}
}