forked from Kiarash-Z/react-modern-calendar-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.44 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
{
"name": "react-persian-calendar-date-picker",
"version": "1.1.5",
"description": "A lightweight, customizable, Persian date picker for React",
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"lint": "eslint src",
"lintWrite": "prettier --write \"./src/**/*.js\"",
"test": "jest ./test",
"clean": "rimraf lib",
"build": "yarn clean && cross-env NODE_ENV=production babel src -d lib --copy-files",
"size": "size-limit",
"checkAll": "yarn size && yarn lint && yarn test"
},
"files": [
"lib"
],
"author": "Kiarash Zarinmehr",
"homepage": "https://kiarash-z.github.io/react-persian-calendar-date-picker",
"repository": {
"type": "git",
"url": "https://github.com/Kiarash-Z/react-persian-calendar-date-picker.git"
},
"bugs": {
"url": "https://github.com/Kiarash-Z/react-persian-calendar-date-picker/issues"
},
"license": "MIT",
"keywords": [
"react",
"persian",
"calendar",
"datepicker",
"datepicker-range",
"datepicker-component"
],
"size-limit": [
{
"path": "./lib/index.js",
"limit": "8 KB"
}
],
"dependencies": {
"jalaali-js": "^1.1.0",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": ">=1",
"image-webpack-loader": "^4.6.0",
"jest": "^24.7.1",
"lint-staged": ">=8",
"prettier": "^1.16.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"size-limit": "^1.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}