forked from FerdinandSu/react-19-cron-mui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.39 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
{
"name": "react-19-cron-mui",
"version": "1.3.2",
"description": "A React 19 cron editor with MUI v6, forked from Xavier Rutayisire's react-js-cron",
"author": "Ferdinand Su (https://github.com/FerdinandSu/)",
"contributors": [
"Xavier Rutayisire <xavier.rutayisire@gmail.com> (https://github.com/xrutayisire/)",
"Itay Levy (https://github.com/levyitay/)"
],
"license": "MIT",
"keywords": [
"react",
"reactjs",
"js",
"cron",
"crontab",
"editor",
"widget",
"generator",
"mui",
"material-ui",
"react-19"
],
"homepage": "https://github.com/HIT-ReFreSH/react-19-cron-mui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/HIT-ReFreSH/react-19-cron-mui.git"
},
"bugs": {
"url": "https://github.com/HIT-ReFreSH/react-19-cron-mui/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"build": "rm -fr dist && yarn build:babel && yarn build:types",
"build:babel": "concurrently \"yarn build:babel:esm\" \"yarn build:babel:cjs\"",
"build:babel:cjs": "BABEL_ENV=cjs babel --extensions \".ts,.tsx\" --copy-files src --out-dir dist/cjs --presets=@babel/env",
"build:babel:esm": "BABEL_ENV=esm babel --extensions \".ts,.tsx\" --copy-files src --out-dir dist/esm",
"build:types": "tsc",
"storybook": "start-storybook -p 9009",
"build-storybook": "build-storybook",
"lint": "eslint 'src/**/*.ts?(x)'",
"prettier": "prettier --write 'src/**/*.{ts?(x),css}'"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.6",
"@mui/material": "^7.3.6",
"@mui/styled-engine-sc": "^7.3.6",
"@mui/styles": "^6.4.8",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.27.1",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-typescript": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@emotion/react": "^11.14.0",
"@emotion/sheet": "^1.4.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.6",
"@mui/material": "^7.3.6",
"@mui/styled-engine": "^7.3.6",
"@mui/styled-engine-sc": "^7.3.6",
"@mui/styles": "6.4.8",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addons": "^7.6.17",
"@storybook/preset-create-react-app": "^10.1.11",
"@storybook/react": "^10.1.11",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-typescript-to-proptypes": "^2.1.0",
"concurrently": "^9.2.1",
"del-cli": "^7.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.7.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-scripts": "^5.0.1",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.12.0"
}