-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
71 lines (71 loc) · 1.92 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
{
"name": "datepicker",
"version": "6.6.7",
"description": "The ultimate tool to create a date, range and time picker in your React applications.",
"scripts": {
"clean": "rimraf node_modules",
"prepare": "husky install",
"e2e": "pnpm --filter examples-e2e test",
"datepicker": "pnpm --filter @rehookify/datepicker",
"install:playwright": "pnpm --filter examples-e2e exec playwright install --with-deps",
"test": "pnpm datepicker build && pnpm -r --parallel run test",
"dev": "pnpm -r --parallel run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rehookify/datepicker.git"
},
"keywords": [
"react",
"hook",
"react-hooks",
"typescript",
"date-picker",
"react-date-picker",
"date-picker-hook",
"react-date-picker-hook",
"range-picker",
"react-range-picker",
"range-picker-hook",
"react-range-picker-hook",
"time-picker",
"react-time-picker",
"time-picker-hook",
"react-time-picker-hook"
],
"author": "<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rehookify/datepicker/issues"
},
"homepage": "https://github.com/rehookify/datepicker#readme",
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@testing-library/react": "^16.0.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@eslint/js": "^9.9.1"
}
}