forked from tulaoda/cron-editor-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.69 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
{
"name": "@tulaoda/cron-editor",
"version": "1.0.1-beta.0",
"description": "基于antd、react的crontab表达式生成工具",
"main": "./dist/index",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack -p --config ./webpack.config.build.js",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master",
"test": "jest"
},
"keywords": [
"cron",
"react",
"js"
],
"author": {
"name": "tulaoda",
"email": "coderaxin@163.com"
},
"repository": {
"type": "git",
"url": "git@github.com:tulaoda/cron-editor-react.git"
},
"license": "MIT",
"dependencies": {
"antd": "^3.9.3",
"classnames": "^2.2.6",
"cron-parser": "^2.13.0",
"moment": "^2.19.1",
"prop-types": "^15.7.2",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/types": "^7.4.4",
"@testing-library/react": "^10.4.7",
"babel-jest": "^26.2.2",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.0",
"css-loader": "^3.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.2.2",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"react-test-renderer": "^16.13.1",
"style-loader": "^0.23.1",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
}
}