-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 2.25 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
{
"author": {
"name": "Jakub Lečbych"
},
"description": "React tree select component based on [react-select](https://github.com/JedWatson/react-select#react-select) with [react-window](https://github.com/bvaughn/react-window)-based rendering of options.",
"version": "0.11.8",
"bugs": {
"url": "https://github.com/lecbyjak/intelligent-tree-select/issues"
},
"homepage": "https://github.com/lecbyjak/intelligent-tree-select#readme",
"keywords": [
"combobox",
"form",
"input",
"multiselect",
"react",
"react-component",
"select",
"ui"
],
"license": "MIT",
"name": "intelligent-tree-select",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/lecbyjak/intelligent-tree-select.git"
},
"main": "lib/index.js",
"dependencies": {
"classnames": "^2.5.1",
"react-highlight-words": "^0.20.0",
"react-select": "^5.8.1",
"react-window": "^1.8.10"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/runtime": "^7.25.6",
"babel-loader": "^8.2.2",
"bootstrap": "^5.3.0",
"concurrently": "^3.5.1",
"css-loader": "^6.8.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-loader": "^1.3.0",
"webpack": "^5.95.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.2"
},
"scripts": {
"dev": "concurrently \"npm run lib:watch\" \"npm start\"",
"lib": "babel src -d lib --copy-files",
"lib:watch": "babel src -w -d lib --copy-files",
"build": "webpack --mode production",
"start": "webpack-dev-server --open --mode development",
"prepublish": "babel src -d lib --copy-files",
"prepare": "husky install",
"prettier:check": "prettier --check ./src",
"prettier:fix": "prettier --write ./src"
}
}