-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.51 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
{
"name": "react-date-dropdown",
"version": "0.2.0",
"main": "dist/react-date-dropdown.mjs",
"module": "dist/react-date-dropdown.umd.js",
"exports": {
".": {
"import": "./dist/react-date-dropdown.mjs",
"require": "./dist/react-date-dropdown.umd.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/WenLonG12345/react-date-dropdown.git"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsc && vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"serve-storybook": "serve storybook-static",
"test-storybook": "test-storybook",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"release": "release-it"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "7.6.6",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "7.6.6",
"@storybook/builder-vite": "^7.6.6",
"@storybook/react": "7.6.6",
"@storybook/react-vite": "^7.6.6",
"@storybook/test": "^7.6.6",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitejs/plugin-react": "^4.2.1",
"babel-plugin-named-exports-order": "0.0.2",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.15",
"prettier": "^3.1.1",
"release-it": "^17.0.1",
"storybook": "7.6.6",
"typescript": "^5.3.3",
"vite": "5.0.10",
"vite-plugin-dts": "^3.7.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"author": {
"name": "WenLonG12345"
},
"homepage": "https://github.com/WenLonG12345/react-date-dropdown#readme",
"description": "React Date Dropdown Component in Typescript",
"bugs": {
"url": "https://github.com/WenLonG12345/react-date-dropdown/issues"
},
"release-it": {
"github": {
"release": true
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}