forked from t0gre/react-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 KB
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
{
"name": "@power-rent/react-datepicker-modern",
"version": "1.0.4",
"description": "A React datepicker build with styled-components.",
"keywords": [
"datepicker",
"react",
"styled-components"
],
"author": "Miha Sedej <miha.sedej@lifeonscreen.com>",
"homepage": "https://github.com/Toprent-app/react-datepicker-modern#readme",
"license": "MIT",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Toprent-app/react-datepicker-modern"
},
"scripts": {
"build": "../../node_modules/.bin/rollup -c rollup.config.js",
"build:watch": "yarn build -w",
"format": "../../node_modules/.bin/prettier --write \"src/**/*.+(ts|tsx)\"",
"tsc": "../../node_modules/.bin/tsc --noEmit",
"prebuild": "../../node_modules/.bin/rimraf lib"
},
"bugs": {
"url": "https://github.com/Toprent-app/react-datepicker-modern/issues"
},
"peerDependencies": {
"react": ">= 16.8.5",
"styled-components": ">= 4.0.0"
},
"devDependencies": {
"@types/styled-components": "^5.1.0",
"@types/styled-system": "^5.1.9",
"csstype": "^2.6.10",
"date-fns": "^2.14.0",
"styled-components": "^5.1.1"
},
"dependencies": {
"@datepicker-react/hooks": "^2.8.4",
"styled-system": "^5.1.5"
},
"publishConfig": {
"access": "public"
}
}