-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
108 lines (108 loc) · 2.83 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-folder-tree",
"version": "5.0.3",
"description": "customizable react folder tree library",
"main": "dist/react-folder-tree.bundle.js",
"typings": "index.d.ts",
"files": [
"dist/react-folder-tree.bundle.js",
"dist/style.css",
"index.d.ts"
],
"author": "Shunji Zhan <[email protected]>",
"keywords": [
"react",
"npm",
"reactjs",
"npm-package",
"folder",
"recursion",
"npm-module",
"folders",
"tree-structure",
"treeview",
"folder-picker",
"folder-viewer",
"recursion-problem",
"folder-structure",
"folder-tooling",
"folder-tree",
"recursion-tree",
"recursion-tree-visualiser",
"recursion-tree-visualizer",
"recursions"
],
"homepage": "https://shunjizhan.github.io/react-folder-tree-demos/",
"repository": {
"type": "git",
"url": "https://github.com/shunjizhan/react-folder-tree.git"
},
"bugs": {
"url": "https://github.com/shunjizhan/react-folder-tree/issues"
},
"license": "MIT",
"private": false,
"scripts": {
"prebuild": "rm -rf dist/",
"build": "webpack --config config/webpack.prod.config.js",
"start": "NODE_ENV=development node scripts/dev-server.js",
"lint": "eslint src/ --ext .js,.jsx",
"test": "jest --collect-coverage",
"prepublish": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.[tj]s?(x)": [
"eslint"
]
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-terminal-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"mini-css-extract-plugin": "^1.6.0",
"node-sass": "^6.0.0",
"react": "^16.8.0 || ^17",
"react-dom": "^16.8.0 || ^17",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.1.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17",
"react-dom": "^16.8.0 || ^17"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-icons": "^4.1.0",
"use-tree-state": "1.0.0"
}
}