forked from Bitnoise/react-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.28 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.28 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
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
{
"name": "@erannave/react-scheduler",
"version": "0.5.1",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/erannave/react-scheduler"
},
"keywords": [
"scheduler",
"gantt",
"gantt chart",
"react",
"timeline",
"calendar"
],
"author": {
"name": "Bitnoise",
"url": "https://scheduler.bitnoise.pl/"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"typecheck": "tsc -b",
"prepare": "husky"
},
"main": "dist/index.umd.js",
"modules": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./dist/style.css": "./dist/index.css",
"./style.css": "./dist/index.css"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"yarn run lint"
]
},
"dependencies": {
"dayjs": "1.11.20",
"lodash.debounce": "4.0.8",
"path": "0.12.7",
"react": "19.2.5",
"react-dom": "19.2.5",
"styled-components": "6.4.0",
"styled-normalize": "8.1.1"
},
"devDependencies": {
"@faker-js/faker": "10.4.0",
"@types/datejs": "0.0.36",
"@types/lodash.debounce": "4.0.9",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/styled-components": "5.1.36",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"@vitejs/plugin-react": "5.2.0",
"babel-plugin-styled-components": "2.1.4",
"eslint": "^9",
"eslint-config-prettier": "^9",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"rollup-plugin-visualizer": "7.0.1",
"typescript": "6.0.2",
"vite": "8.0.8",
"vite-plugin-dts": "4.5.4",
"vite-plugin-svgr": "5.2.0"
}
}