-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 3.6 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 3.6 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@aldabil/react-scheduler",
"version": "3.1.2",
"description": "React scheduler component based on Material-UI & date-fns",
"files": [
"*"
],
"type": "module",
"scripts": {
"start": "vite serve",
"build": "vite build --mode production",
"postbuild": "node ./scripts/post-pack.js",
"local:pack": "npm run build && cd dist && npm pack && mv *.tgz ../",
"format": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\"",
"format:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"lint": "npm run types && eslint .",
"lint:fix": "eslint . --fix",
"types": "tsc --noEmit",
"prepare": "husky install",
"pre:commit": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci"
},
"exports": {
"./types": {
"import": "./types.d.ts"
},
".": {
"import": "./index.js"
}
},
"lint-staged": {
"**/*.{ts,js,tsx,jsx}": [
"npm run lint"
],
"**/*.{ts,js,tsx,jsx,json,yml}": [
"npm run format:write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/aldabil21/react-scheduler.git"
},
"keywords": [
"react",
"material-ui",
"calendar",
"scheduler"
],
"author": "Aldabil",
"license": "MIT",
"bugs": {
"url": "https://github.com/aldabil21/react-scheduler/issues"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@mui/icons-material": ">=7.0.2",
"@mui/material": ">=7.0.2",
"@mui/x-date-pickers": ">=7.0.0 & <8.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/rollup-plugin-peer-deps-external": "^2",
"@typescript-eslint/parser": "^8.24.1",
"@vitejs/plugin-react": "^4.3.4",
"date-fns": ">=4.1.0",
"eslint": "^9.20.1",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"react": ">=19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rrule": "^2.8.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.1",
"vite-plugin-checker": "^0.9.0",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"peerDependencies": {
"@mui/icons-material": ">=7.0.0",
"@mui/material": ">=7.0.0",
"@mui/x-date-pickers": ">=7.0.0 & <8.0.0",
"date-fns": ">=4.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"rrule": ">=2.8.1"
},
"peerDependenciesMeta": {
"rrule": {
"optional": true
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}