forked from one-more/react-cron-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.83 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
{
"name": "react-cron-builder",
"version": "1.0.3",
"main": "dist/bundle.js",
"description": "react component to create cron expression",
"repository": "https://github.com/one-more/react-cron-builder",
"license": "ISC",
"author": "one-more",
"bugs": {
"url": "https://github.com/one-more/react-cron-builder/issues"
},
"homepage": "https://github.com/one-more/react-cron-builder#readme",
"peerDependencies": {
"lodash": "^4.17.2",
"prop-types": "^15.6.0",
"react": "^15.5.4"
},
"dependencies": {
"classnames": "^2.2.5",
"cronstrue": "^0.10.3",
"react-bem-helper": "^1.4.1",
"react-if": "^2.1.0",
"react-select": "^1.0.0-rc.2"
},
"devDependencies": {
"@kadira/storybook-deployer": "^1.2.0",
"@storybook/addon-actions": "^3.4.6",
"@storybook/addon-links": "^3.4.6",
"@storybook/addons": "^3.4.6",
"@storybook/react": "^3.4.6",
"autoprefixer": "^6.7.7",
"babel-core": "*",
"babel-eslint": "^7.2.2",
"babel-jest": "^17.0.2",
"babel-loader": "*",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "*",
"babel-preset-react": "*",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^4.0.0",
"css-loader": "^0.28.11",
"css-module-flow": "^1.0.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^3.0.2",
"flow-babel-webpack-plugin": "^1.0.1",
"flow-bin": "^0.44.2",
"jest": "^17.0.3",
"normalize.css": "^6.0.0",
"pre-commit": "^1.2.2",
"react": "^15.5.4",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.5.4",
"resolve-url-loader": "^2.0.2",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "3.4.1"
},
"scripts": {
"test": "jest --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "cross-env NODE_ENV=production webpack --progress",
"build-prod": "cross-env NODE_ENV=production webpack -p",
"deploy-storybook": "storybook-to-ghpages",
"git-add": "git add -u",
"flow": "flow"
},
"pre-commit": {
"silent": true,
"run": [
"build-prod",
"test",
"git-add"
]
},
"jest": {
"modulePaths": [
"<rootDir>/src/"
],
"moduleNameMapper": {
"\\.(css|less|styl)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}