-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
97 lines (97 loc) · 2.6 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-semantic-ui-datepickers",
"version": "0.0.0-development",
"description": "Datepickers built with Semantic UI for React and Dayzed",
"main": "dist/index.js",
"module": "dist/react-semantic-ui-datepickers.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"lint": "tsdx lint src",
"start": "tsdx watch",
"build": "tsdx build",
"prebuild": "rimraf dist",
"prepare": "cd date-fns-v2/ && npm install",
"test": "tsdx test --env=jsdom",
"validate": "npm run lint && npm run test && npm run build",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"dist"
],
"keywords": [
"semantic-ui",
"calendar",
"react",
"render-props"
],
"author": "Arthur Denner <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "7.8.0",
"classnames": "2.2.6",
"core-js": "3.6.3",
"date-fns": "1.30.1",
"dayzed": "3.1.0",
"format-string-by-pattern": "1.1.1",
"react-fast-compare": "2.0.4"
},
"devDependencies": {
"@babel/core": "7.8.0",
"@storybook/addon-actions": "5.3.1",
"@storybook/addon-links": "5.3.1",
"@storybook/addons": "5.3.1",
"@storybook/react": "5.3.1",
"@testing-library/react": "9.4.0",
"@types/jest": "24.0.25",
"@types/storybook__react": "4.0.2",
"autoprefixer": "9.7.3",
"awesome-typescript-loader": "5.2.1",
"babel-loader": "8.0.6",
"cssnano": "4.1.10",
"eslint-plugin-prettier": "3.1.2",
"husky": "4.0.7",
"jest-transform-css": "2.0.0",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"rimraf": "3.0.0",
"rollup-plugin-copy": "3.1.0",
"rollup-plugin-postcss": "2.0.3",
"rollup-plugin-typescript2": "0.25.3",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "0.88.2",
"tsdx": "0.12.1",
"tslib": "1.10.0",
"typescript": "3.7.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"semantic-ui-react": ">=0.75.0"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"transform": {
".+\\.css$": "jest-transform-css",
".(js|ts)x?": "ts-jest"
}
},
"repository": {
"type": "git",
"url": "https://github.com/arthurdenner/react-semantic-ui-datepickers.git"
},
"bugs": {
"url": "https://github.com/arthurdenner/react-semantic-ui-datepickers/issues"
},
"homepage": "https://github.com/arthurdenner/react-semantic-ui-datepickers#readme"
}