forked from Kiarash-Z/react-modern-calendar-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.08 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
108
109
110
111
112
{
"name": "calendar-datepicker",
"version": "3.1.6",
"description": "A modern, beautiful, customizable date picker for React",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"lint": "concurrently \"eslint src\" \"prettier --check \"./src/**/*.css\"\" ",
"lint:write": "prettier --write \"./src/**/*.js\" \"./src/**/*.css\"",
"test": "jest ./test --coverage",
"test:watch": "jest ./test --watch",
"clean": "rimraf lib",
"build": "cross-env NODE_ENV=production rollup -c",
"size": "npm run build && size-limit",
"checkAll": "npm run size && npm run lint && npm run test",
"contributors:generate": "npm all-contributors generate"
},
"files": [
"lib",
"index.d.ts"
],
"author": "Kiarash Zarinmehr",
"homepage": "https://kiarash-z.github.io/react-modern-calendar-datepicker",
"repository": {
"type": "git",
"url": "https://github.com/Kiarash-Z/react-modern-calendar-datepicker.git"
},
"bugs": {
"url": "https://github.com/Kiarash-Z/react-modern-calendar-datepicker/issues"
},
"license": "MIT",
"keywords": [
"react",
"modern",
"calendar",
"datepicker",
"datepicker range",
"datepicker component",
"beautiful",
"animated",
"javascript",
"persian"
],
"size-limit": [
{
"path": "./lib/index.js",
"limit": "11 KB"
}
],
"dependencies": {
"jalaali-js": "^1.1.5"
},
"peerDependencies": {
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@size-limit/preset-small-lib": "^4.6.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"all-contributors-cli": "^6.19.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"file-loader": "^6.1.1",
"html-webpack-plugin": "^4.5.0",
"husky": ">=4",
"image-webpack-loader": "^7.0.1",
"jest": "^26.6.0",
"lint-staged": ">=10",
"prettier": "^2.1.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rimraf": "^3.0.2",
"rollup": "^2.32.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-terser": "^7.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}