forked from jonthornton/jquery-timepicker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.18 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@mash-a/timepicker-react",
"version": "1.0.9",
"title": "timepicker-react",
"description": "A React TimePicker component based on jquery-timepicker.",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build",
"src/**/*.{css,js.map}"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -w --config rollup.config.js",
"format": "prettier-eslint --write \"src/**/*.js\"",
"test": "jest",
"prepare": "npm run build",
"storybook": "start-storybook -p 6006",
"storybook:export": "build-storybook"
},
"license": "MIT",
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@storybook/core": "^6.3.4",
"@storybook/react": "^6.3.4",
"babel-jest": "^25.5.1",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react-app": "^10.0.0",
"eslint": "^7.30.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"html-webpack-plugin": "^5.0.0-alpha.15",
"jest": "^26.6.3",
"prettier-eslint": "^9.0.2",
"prettier-eslint-cli": "^5.0.0",
"react": "^16.8.x",
"react-dom": "^16.8.x",
"rollup": "^2.38.5",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-css-bundle": "^1.0.4",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"sass-loader": "^12.1.0",
"trim": "^0.0.3"
},
"keywords": [
"timepicker",
"time",
"picker",
"ui",
"google calendar",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/mash-a/timepicker-react.git"
},
"dependencies": {
"@babel/runtime": "^7.14.6"
}
}