forked from xrutayisire/react-js-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.54 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
77
78
79
{
"name": "react-js-cron",
"version": "1.2.1",
"description": "A React cron editor with antd inspired by jqCron",
"author": "Xavier Rutayisire <[email protected]> (https://github.com/xrutayisire/)",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"js",
"cron",
"crontab",
"editor",
"widget",
"generator",
"antd",
"ant-design",
"cronjob",
"schedule",
"parser"
],
"homepage": "https://github.com/xrutayisire/react-js-cron#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xrutayisire/react-js-cron.git"
},
"bugs": {
"url": "https://github.com/xrutayisire/react-js-cron/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"build": "del 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": {
"antd": ">=4.6.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@ant-design/icons": "^4.3.0",
"@babel/cli": "^7.12.10",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.1",
"@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",
"antd": "^4.10.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.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.1",
"typescript": "^4.1.3"
}
}