forked from xrutayisire/react-js-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.6 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
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
{
"name": "react-js-cron",
"version": "4.0.0",
"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/index.d.ts",
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE.md"
],
"packageManager": "[email protected]",
"scripts": {
"build": "run-s build:del build:rollup",
"build:rollup": "rollup -c",
"build:del": "del dist",
"dev": "rollup -c -w",
"storybook": "start-storybook -p 9009",
"build-storybook": "build-storybook -o docs",
"lint": "eslint 'src/**/*.ts?(x)'",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --check 'src/**/*.{ts?(x),css}'",
"prettier:fix": "yarn prettier --write",
"format": "run-s lint prettier",
"format:fix": "run-s lint:fix prettier:fix",
"test": "react-scripts test",
"test:coverage": "yarn test --coverage --watchAll"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"@ant-design/cssinjs": "1.0.2",
"enhanced-resolve": "5.10.0"
},
"peerDependencies": {
"antd": ">=5.5.0",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@ant-design/icons": "4.8.0",
"@babel/core": "7.20.5",
"@rollup/plugin-commonjs": "23.0.3",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.1.0",
"@rollup/plugin-typescript": "10.0.1",
"@storybook/addon-actions": "6.5.13",
"@storybook/addon-docs": "6.5.13",
"@storybook/addon-essentials": "6.5.13",
"@storybook/addon-interactions": "6.5.13",
"@storybook/addon-links": "6.5.13",
"@storybook/builder-webpack5": "6.5.13",
"@storybook/manager-webpack5": "6.5.13",
"@storybook/react": "6.5.13",
"@storybook/testing-library": "0.0.13",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.4.3",
"@trivago/prettier-plugin-sort-imports": "3.4.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"antd": "5.6.1",
"babel-loader": "8.3.0",
"cz-conventional-changelog": "3.3.0",
"del-cli": "5.0.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-file-progress": "1.3.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"rollup": "3.5.0",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-dts": "5.0.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"typescript": "4.9.3"
},
"jest": {
"collectCoverageFrom": [
"src/**",
"!src/types.ts",
"!src/index.ts",
"!src/stories/**"
],
"coverageReporters": [
"lcov",
"json-summary"
]
}
}