-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.37 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
{
"name": "react-timeline-scheduler",
"private": false,
"version": "1.1.14",
"type": "module",
"description": "A responsive and customizable timeline scheduler component for React.",
"author": "LuciferDIot",
"license": "MIT",
"main": "./dist/react-timeline-scheduler.umd.cjs",
"module": "./dist/react-timeline-scheduler.js",
"types": "./dist/index.d.ts",
"style": "./dist/react-timeline-scheduler.css",
"exports": {
".": {
"types": "./dist/index.d.ts",
"style": "./dist/react-timeline-scheduler.css",
"import": "./dist/react-timeline-scheduler.js",
"require": "./dist/react-timeline-scheduler.umd.cjs"
},
"./dist/react-timeline-scheduler.css": "./dist/react-timeline-scheduler.css"
},
"files": [
"dist"
],
"keywords": [
"react",
"react-component",
"scheduler",
"timeline",
"calendar",
"gantt",
"gantt-chart",
"planner",
"task-management",
"resource-planning",
"drag-and-drop",
"dnd",
"resizable",
"typescript",
"responsive",
"customizable",
"ui-component"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"peerDependencies": {
"react": "^18.3.1 || ^19.0.0",
"react-dom": "^18.3.1 || ^19.0.0",
"tailwindcss": "^4.0.1"
},
"dependencies": {
"framer-motion": "^12.0.6",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"react-icons": "^5.4.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@eslint/js": "^9.19.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.17.16",
"@types/node": "^25.0.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"jsdom": "^27.3.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.15"
}
}