-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
81 lines (81 loc) · 2.42 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
{
"name": "react-kronos",
"version": "1.7.2",
"description": "A fast, intuitive, and elegant date and time picker for React.",
"main": "dist/bundle.js",
"scripts": {
"start": "node devServer.js",
"build": "npm run clean && npm run build:lib && npm run build:umd && npm run build:examples",
"build:lib": "BABEL_ENV=production babel src -d lib",
"build:umd": "NODE_ENV=production webpack --config webpack.config.prod.js -p",
"build:examples": "NODE_ENV=production webpack --config examples/webpack.config.examples.js",
"clean": "rimraf dist && rimraf lib && npm run clean:examples",
"clean:examples": "rimraf examples/bundle.*",
"push_examples": "./scripts/push_ghpages"
},
"repository": {
"type": "git",
"url": "https://github.com/dubert/react-kronos"
},
"keywords": [
"react",
"react-component",
"date",
"time",
"picker",
"select",
"input",
"field",
"moment",
"calendar",
"years",
"months",
"days",
"hours"
],
"author": "Luke Dubert <[email protected]> (http://github.com/dubert)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dubert/react-kronos/issues"
},
"homepage": "http://dubert.github.io/react-kronos",
"devDependencies": {
"@babel/cli": "7.0.0-beta.40",
"@babel/core": "7.0.0-beta.40",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.40",
"@babel/plugin-proposal-function-bind": "7.0.0-beta.40",
"@babel/plugin-transform-react-jsx": "7.0.0-beta.40",
"@babel/polyfill": "7.0.0-beta.40",
"@babel/preset-env": "7.0.0-beta.40",
"@babel/preset-react": "7.0.0-beta.40",
"@babel/register": "7.0.0-beta.40",
"babel-eslint": "8.2.1",
"babel-loader": "8.0.0-beta.0",
"empty-module": "0.0.2",
"express": "^4.16.2",
"json-loader": "^0.5.7",
"prop-types": "^15.6.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.5.0",
"rimraf": "^2.6.2",
"webpack": "^3.11.0",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"classnames": "^2.2.5",
"color": "^0.11.4",
"jss": "^6.5.0",
"jss-preset-default": "^1.3.1",
"moment": "^2.18.0",
"moment-range": "^2.2.0",
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
}
}