-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "react-duration-control",
"version": "1.1.0",
"description": "A time duration input component that allows the user to define a duration in days, hours, minutes, seconds and milliseconds",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikkorn/react-duration-control.git"
},
"keywords": [
"react",
"component",
"duration",
"time",
"input",
"control",
"react",
"component",
"day",
"hour",
"minute",
"second",
"millisecond"
],
"author": "nikolas howard",
"license": "MIT",
"bugs": {
"url": "https://github.com/nikkorn/react-duration-control/issues"
},
"homepage": "https://github.com/nikkorn/react-duration-control#readme",
"devDependencies": {
"@babel/core": "^7.18.2",
"@storybook/addon-actions": "^6.5.5",
"@storybook/addon-essentials": "^6.5.5",
"@storybook/addon-interactions": "^6.5.5",
"@storybook/addon-links": "^6.5.5",
"@storybook/builder-webpack4": "^6.5.5",
"@storybook/manager-webpack4": "^6.5.5",
"@storybook/react": "^6.5.5",
"@storybook/testing-library": "0.0.11",
"babel-loader": "^8.2.5",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^2.75.3",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-typescript2": "^0.31.2",
"tslib": "^2.4.0",
"typescript": "^4.7.2"
},
"dependencies": {}
}