-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.66 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.66 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
{
"name": "react-timeline-responsive",
"version": "2.1.0",
"private": false,
"description": "React Timeline is a customizable and responsive timeline component for React applications. You can use it to display a timeline of events or any other chronological data. ",
"license": "MIT",
"author": "Michael Flohr (https://www.michaelflohr.de)",
"keywords": [
"react",
"react-timeline",
"typescript",
"timeline",
"timeline-component",
"sticky",
"grid"
],
"repository": {
"type": "git",
"url": "https://github.com/MatchuPitchu/react-timeline-responsive.git"
},
"homepage": "https://github.com/MatchuPitchu/react-timeline-responsive#readme",
"bugs": {
"url": "https://github.com/MatchuPitchu/react-timeline-responsive/issues"
},
"main": "./dist/react-timeline-responsive.umd.js",
"module": "./dist/react-timeline-responsive.es.js",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-timeline-responsive.es.js",
"require": "./dist/react-timeline-responsive.umd.js"
}
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"lint:format": "prettier . --write",
"clean": "rm -rf dist",
"build:package": "npm run clean && npm run test:coverage && npm run build"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/eslint": "^8.56.2",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.0",
"codecov": "^3.8.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jsdom": "^23.2.0",
"prettier": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.4",
"vite": "^5.0.11",
"vite-plugin-css-injected-by-js": "^3.3.1",
"vite-plugin-dts": "^3.7.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-checker": "0.6.2",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.1.0"
},
"peerDependencies": {
"react": ">=17"
}
}