forked from harveyconnor/react-timeline-range-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.37 KB
/
package.json
File metadata and controls
89 lines (89 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
{
"name": "react-timeline-range-slider",
"version": "2.0.7",
"description": "Time Slider component for React",
"author": "Harvey Connor",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/harveyconnor/react-timeline-range-slider",
"repository": {
"type": "git",
"url": "https://github.com/harveyconnor/react-timeline-range-slider"
},
"keywords": [
"react-component",
"react",
"slider",
"component",
"time-picker",
"react-slider",
"range-slider",
"range"
],
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"scripts": {
"start": "webpack --watch",
"webpack-build": "webpack",
"build": "tsc -p .",
"prepublish": "npm run webpack-build",
"postinstall": "pnpm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"d3-scale": "^4.0.2",
"date-fns": "^2.30.0",
"react-compound-slider": "^3.3.1",
"sass": "^1.45.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-object-assign": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@swc/core": "^1.4.16",
"@types/d3-scale": "^4.0.8",
"@types/react": "^17.0.80",
"@types/react-dom": "^17.0.25",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^5.1.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"prettier": "^3.2.5",
"react-dom": "^18.3.1",
"sass-loader": "^10.0.0",
"style-loader": "^2.0.0",
"swc-loader": "^0.2.6",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}