-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
124 lines (124 loc) · 3.55 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
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "react-full-year-scheduler",
"description": "React Year Scheduler is a customizable and easy-to-use React component that allows you to display a year calendar with events, and enable users to select and interact with them. ",
"private": false,
"version": "1.2.10",
"repository": {
"type": "git",
"url": "git+https://github.com/sadiki-o/react-full-year-scheduler"
},
"author": "Oussama Sadiki [email protected]",
"bugs": {
"url": "https://github.com/sadiki-o/react-full-year-scheduler/issues"
},
"homepage": "https://demo-calendar-pi.vercel.app/",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"keywords": [
"calendar",
"full-year-calendar",
"react-calendar",
"react-scheduler",
"events-scheduler",
"react-full-year-scheduler",
"holidays",
"events"
],
"scripts": {
"dev": "vite",
"clean:lib": "rm -rf dist",
"build:lib": "vite build",
"build": "run-s clean:lib build:lib",
"lint:code": "eslint ./src/ --ext ts,tsx --report-unused-disable-directives",
"fix:code": "eslint ./src/ --ext ts,tsx --report-unused-disable-directives --fix",
"lint:types": "tsc --pretty --noEmit",
"lint:style": "stylelint ./src/**/*.css",
"fix:style": "stylelint '**/*.css' --fix",
"test": "jest",
"preview": "vite preview",
"generate:component": "npx generate-react-cli component",
"prepare": "husky || true"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"dependencies": {
"@tippyjs/react": "^4.2.6",
"autoprefixer": "^10.4.17",
"dayjs": "^1.11.10",
"lodash": "^4.17.21",
"tailwindcss": "^3.4.1",
"vite-plugin-css-injected-by-js": "^3.4.0"
},
"devDependencies": {
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@types/jest": "29.5.12",
"@types/lodash": "4.14.202",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"@vitejs/plugin-react": "4.2.1",
"@yelo/rollup-node-external": "^1.0.1",
"alias-hq": "6.2.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.5",
"eslint-plugin-ssr-friendly": "1.3.0",
"generate-react-cli": "^8.4.0",
"husky": "^9.0.11",
"identity-obj-proxy": "3.0.0",
"is-ci": "3.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "^15.2.2",
"npm-run-all": "4.1.5",
"postcss": "^8.4.35",
"postcss-preset-env": "^9.3.0",
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"stylelint": "16.2.1",
"stylelint-config-standard": "36.0.0",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"vite": "5.1.1",
"vite-plugin-dts": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": [
"npm run clean:lib",
"npm run lint:code",
"npm run lint:types",
"npm run lint:style",
"git add"
]
}
}