forked from arthurdenner/react-semantic-ui-datepickers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.11 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
108
109
110
111
112
{
"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": "dts lint src stories",
"lint:fix": "yarn lint --fix",
"start": "dts watch",
"build": "dts build",
"prebuild": "rimraf dist",
"test": "dts test",
"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"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist"
],
"keywords": [
"semantic-ui",
"calendar",
"react",
"render-props"
],
"author": "Arthur Denner <[email protected]>",
"license": "MIT",
"dependencies": {
"@date-fns/upgrade": "1.0.3",
"classnames": "2.3.1",
"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.12",
"@storybook/addon-essentials": "6.4.17",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-knobs": "6.4.0",
"@storybook/addon-links": "6.4.17",
"@storybook/addon-storysource": "6.4.17",
"@storybook/addons": "6.4.17",
"@storybook/react": "6.4.17",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@tsconfig/create-react-app": "1.0.2",
"@tsconfig/recommended": "1.0.1",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"autoprefixer": "10.4.2",
"babel-loader": "8.2.3",
"cssnano": "5.0.16",
"dts-cli": "1.2.0",
"eslint-config-react-app": "7.0.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest-transform-css": "3.0.0",
"postcss": "8.4.5",
"pretty-quick": "3.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"rimraf": "3.0.2",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-postcss": "4.0.2",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "2.1.1",
"timekeeper": "2.2.0",
"tslib": "2.3.1",
"typescript": "4.5.5"
},
"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"
],
"testEnvironment": "jsdom",
"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"
}