-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
103 lines (103 loc) · 2.9 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
{
"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:locales": "node scripts/validateLocales.js",
"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"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist"
],
"keywords": [
"semantic-ui",
"calendar",
"react",
"render-props"
],
"author": "Arthur Denner <arthurdenner7@gmail.com>",
"license": "MIT",
"dependencies": {
"@date-fns/upgrade": "1.0.3",
"classnames": "2.3.2",
"date-fns": "2.30.0",
"dayzed": "3.2.3",
"format-string-by-pattern": "1.2.2",
"react-fast-compare": "3.2.2"
},
"devDependencies": {
"@babel/core": "7.20.7",
"@storybook/addon-essentials": "7.0.24",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-knobs": "6.4.0",
"@storybook/addon-links": "6.5.16",
"@storybook/addon-storysource": "6.5.16",
"@storybook/addons": "6.5.16",
"@storybook/react": "6.5.13",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@tsconfig/create-react-app": "1.0.3",
"@tsconfig/recommended": "1.0.1",
"@types/react": "18.2.7",
"@types/react-dom": "18.0.10",
"autoprefixer": "10.4.14",
"babel-loader": "9.1.0",
"cssnano": "5.1.14",
"dts-cli": "1.6.3",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "4.2.1",
"jest-transform-css": "6.0.1",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"rimraf": "5.0.1",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-postcss": "4.0.2",
"semantic-ui-css": "2.5.0",
"semantic-ui-react": "2.1.4",
"timekeeper": "2.2.0",
"ts-jest": "29.1.1",
"tslib": "2.5.0",
"typescript": "4.9.4"
},
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.ts"
],
"testEnvironment": "jsdom",
"transform": {
".+\\.css$": "jest-transform-css",
".(js|ts)x?": [
"ts-jest",
{
"tsconfig": "tsconfig.test.json"
}
]
}
},
"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"
}