forked from rouftom/react-mui-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "react-mui-scheduler",
"version": "3.0.0",
"description": "📅 React mui scheduler is a react component based on @mui v5 that allows you to manage data in a calendar",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src/ --ext .ts"
},
"files": [
"README.md",
"CHANGELOG.md",
"dist",
"src",
"src/locales/**/*.json"
],
"keywords": [
"react",
"material",
"scheduler",
"material-ui",
"mui",
"calendar"
],
"author": "rouftom",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rouftom/react-mui-scheduler.git"
},
"homepage": "https://github.com/rouftom/react-mui-scheduler#readme",
"bugs": {
"url": "https://github.com/rouftom/react-mui-scheduler/issues"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.134",
"@mui/material": "^5.13.6",
"@mui/system": "^5.13.6",
"@mui/x-date-pickers": "^6.9.1",
"date-fns": "^2.30.0",
"i18next": "^23.2.7",
"prop-types": "^15.8.1",
"react-i18next": "^13.0.1"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@types/node": "^18.2.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-mui-path-imports": "^0.0.15",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"typescript": "^4.8.4"
}
}