forked from levyitay/react-js-cron-mui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.57 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
{
"name": "@finvari/react-js-cron-mui",
"version": "1.0.3",
"description": "A React cron editor with Material UI a forked repo from Xavier Rutayisire (https://github.com/xrutayisire/react-js-cron)",
"author": "Itay Levy (https://github.com/levyitay/)",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"js",
"cron",
"crontab",
"editor",
"widget",
"generator",
"mui",
"material-ui"
],
"homepage": "https://github.com/finvari/react-js-cron-mui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/finvari/react-js-cron-mui.git"
},
"bugs": {
"url": "https://github.com/finvari/react-js-cron-mui/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"build": "rm -rf 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": {
"@material-ui/core": ">=4.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.1",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@storybook/addon-docs": "^6.1.11",
"@storybook/addons": "^6.1.11",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.11",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-typescript-to-proptypes": "^1.4.2",
"concurrently": "^5.3.0",
"del-cli": "^3.0.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-scripts": "^4.0.1",
"typescript": "^4.1.3"
}
}