forked from Kiarash-Z/react-modern-calendar-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.94 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
{
"name": "leanworkflow-calendar-datepicker",
"version": "3.1.8",
"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": "github:Atypon-OpenSource/react-modern-calendar-datepicker",
"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.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.0.0",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"@size-limit/preset-small-lib": "^2.2.1",
"@testing-library/jest-dom": "^4.1.1",
"@testing-library/react": "^9.3.0",
"all-contributors-cli": "^6.11.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"concurrently": "^5.0.0",
"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.9.0",
"lint-staged": ">=8",
"prettier": "^1.16.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rimraf": "^2.6.3",
"rollup": "^1.27.8",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-terser": "^5.1.2",
"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"
]
}
}