-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "daycy",
"version": "0.5.2",
"description": "Simple date (range) picker for React based on Semantic-UI.",
"main": "./dist/index.js",
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"build-js": "babel src --out-dir dist",
"build-css": "mkdir -p dist && cp src/*.css dist/",
"build": "rm -rf dist && npm run -s build-js && npm run -s build-css",
"prepublish": "npm run -s build"
},
"keywords": [
"Date",
"Range",
"Picker",
"React",
"Semantic-UI"
],
"author": "Daan van der Kallen",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-actions": "^5.3.21",
"@storybook/addon-links": "^5.3.21",
"@storybook/addons": "^5.3.22",
"@storybook/react": "^5.3.21",
"@storybook/storybook-deployer": "^2.8.16",
"babel-loader": "^8.3.0",
"babel-preset-minify": "^0.5.2",
"semantic-ui-css": "^2.5.0"
},
"dependencies": {
"luxon": "^3.3.0",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-text-mask": "^5.5.0",
"semantic-ui-react": "^1.3.1",
"text-mask-addons": "^3.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeYellowBV/daycy.git"
},
"files": [
"dist"
]
}