forked from gpbl/react-day-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.69 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
{
"name": "react-day-picker",
"version": "8.8.0",
"description": "Customizable Date Picker for React",
"author": "Giampaolo Bellavite <[email protected]>",
"homepage": "http://react-day-picker.js.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gpbl/react-day-picker"
},
"bugs": {
"url": "https://github.com/gpbl/react-day-picker/issues"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.min.js",
"types": "dist/index.d.ts",
"style": "dist/style.css",
"scripts": {
"prepublish": "onpm build",
"build": "rimraf dist && rollup -c",
"build-watch": "rollup -c -w",
"lint": "eslint .",
"test": "jest",
"test-watch": "jest --watch",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"typecheck-watch": "tsc --project ./tsconfig.json --noEmit --watch"
},
"files": [
"dist",
"src",
"tsconfig.json"
],
"devDependencies": {
"@jest/types": "^29.5.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.1",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.13",
"@types/react-dom": "^18.2.6",
"@types/react": "^18.0.38",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.0",
"date-fns": "^2.29.3",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.3",
"eslint": "^8.39.0",
"jest-environment-jsdom": "^29.5.0",
"jest": "^29.5.0",
"mockdate": "^3.0.5",
"postcss-d-ts": "^1.2.0",
"postcss-typescript-d-ts": "^1.0.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"react-classnaming": "^0.16.4",
"react-dom": "^18.2.0",
"react": "^18.2.0",
"rimraf": "^5.0.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup": "^3.20.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tslib": "^2.5.0",
"typescript": "~4.9.5"
},
"peerDependencies": {
"date-fns": "^2.28.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/gpbl"
}
}