-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
107 lines (107 loc) · 3.05 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-trip-date",
"version": "1.13.1",
"description": "date-picker and range-picker for React applications",
"author": "Samsam Ahmadi",
"license": "GPL-3.0",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"repository": {
"type": "git",
"url": "https://github.com/samsam-ahmadi/react-trip-date.git"
},
"bugs": {
"url": "https://github.com/samsam-ahmadi/react-trip-date/issues"
},
"homepage": "https://killthejs.com/react-trip-date/",
"keywords": [
"reactDatePicker",
"reactRangePicker",
"rangePicker",
"datePicker"
],
"peerDependencies": {
"react": "^16.9.0 || ^17 || ^18",
"react-dom": "^16.9.0 || ^17 || ^18"
},
"dependencies": {
"dayjs": "^1.11.7",
"react-scripts": "5.0.1",
"styled-components": "^5.3.5",
"typescript": "^4.9.4"
},
"scripts": {
"start": "react-scripts start",
"build": "rollup -c",
"test": "react-scripts test",
"sort": "import-sort --write 'src/**/*.{ts,tsx,js,jsx}'",
"sort:check": "import-sort -l 'src/**/*.{ts,tsx,js,jsx}'",
"storybook": "start-storybook -p 9009",
"deploy": "gh-pages -d storybook-static",
"build-storybook": "build-storybook -c .storybook -o docs-build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-url": "^6.1.0",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-knobs": "6.4.0",
"@storybook/addon-links": "6.5.15",
"@storybook/addon-storysource": "6.5.15",
"@storybook/addons": "6.5.15",
"@storybook/builder-webpack5": "6.5.15",
"@storybook/core": "6.5.15",
"@storybook/manager-webpack5": "6.5.15",
"@storybook/preset-create-react-app": "4.1.2",
"@storybook/react": "6.5.15",
"@svgr/rollup": "^6.2.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"@types/styled-components": "^5.1.25",
"@zoomit/dayjs-jalali-plugin": "^0.0.7",
"eslint-config-react-app": "^7.0.1",
"gh-pages": "^3.2.3",
"husky": "^7.0.0",
"import-sort-cli": "^6.0.0",
"import-sort-style-renke": "^6.0.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.70.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"tslib": "^2.4.0",
"webpack": "5"
},
"files": [
"dist"
]
}