forked from ShirasawaSama/material-ui-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.97 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
{
"name": "@php-etl/material-ui-cron",
"version": "0.2.0",
"description": "A React cron editor using material ui",
"author": "Parichay Barpanda <[email protected]> (https://github.com/baymac/)",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"js",
"cron",
"crontab",
"editor",
"widget",
"generator",
"material-ui",
"mui"
],
"homepage": "https://baymac.github.io/material-ui-cron",
"repository": {
"type": "git",
"url": "git+https://github.com/baymac/material-ui-cron.git"
},
"bugs": {
"url": "https://github.com/baymac/material-ui-cron/issues"
},
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "del-cli dist && tsc --skipLibCheck",
"lint": "eslint src --ext .ts,.tsx",
"fix": "eslint src --ext .ts,.tsx --fix",
"prettier": "prettier --write \"src/**/*.{ts?(x),css}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"prepare": "npm run build"
},
"devDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.10.14",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/react": "^6.5.13",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"concurrently": "^7.5.0",
"del-cli": "^5.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"typescript": "^4.9.3"
},
"dependencies": {
"cronstrue": "^2.15.0",
"recoil": "^0.7.6"
}
}