-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
107 lines (107 loc) · 3 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
98
99
100
101
102
103
104
105
106
107
{
"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 stories",
"lint:fix": "yarn lint --fix",
"start": "tsdx watch",
"build": "tsdx build",
"prebuild": "rimraf dist",
"test": "tsdx test --env=jsdom",
"validate": "npm run lint && npm run test -- --coverage && npm run build",
"now-build": "npm run storybook:build",
"storybook": "start-storybook --ci -p 6006",
"storybook:build": "build-storybook",
"prepare": "husky install"
},
"files": [
"dist"
],
"keywords": [
"semantic-ui",
"calendar",
"react",
"render-props"
],
"author": "Arthur Denner <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "7.16.7",
"@date-fns/upgrade": "1.0.3",
"classnames": "2.3.1",
"core-js": "3.20.2",
"date-fns": "2.28.0",
"dayzed": "3.2.2",
"format-string-by-pattern": "1.2.2",
"react-fast-compare": "3.2.0"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@storybook/addon-knobs": "6.4.0",
"@storybook/addon-storysource": "6.4.9",
"@storybook/addons": "6.4.9",
"@storybook/react": "6.4.9",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/classnames": "2.3.1",
"@types/jest": "27.0.2",
"@types/storybook__react": "5.2.1",
"autoprefixer": "9.8.8",
"babel-jest": "27.4.5",
"babel-loader": "8.2.3",
"cssnano": "4.1.11",
"eslint-plugin-prettier": "3.4.1",
"husky": "7.0.4",
"jest-transform-css": "3.0.0",
"prettier": "2.5.1",
"pretty-quick": "3.1.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"rimraf": "3.0.2",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-postcss": "3.1.8",
"rollup-plugin-typescript2": "0.31.1",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "2.0.4",
"timekeeper": "2.2.0",
"tsdx": "0.13.3",
"tslib": "2.3.1",
"typescript": "4.5.4"
},
"peerDependencies": {
"react": "^16.8 || ^17.0",
"semantic-ui-react": ">=0.75.0"
},
"resolutions": {
"@babel/plugin-proposal-class-properties": "7.14.5",
"handlebars": "4.5.0"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"setupFilesAfterEnv": [
"./jest.setup.ts"
],
"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"
}