-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.47 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
{
"name": "use-tree-state",
"version": "1.1.1",
"description": "A super-light and customizable React hook to manage tree state like never before",
"main": "dist/use-tree-state.bundle.js",
"files": [
"dist/use-tree-state.bundle.js"
],
"homepage": "https://github.com/shunjizhan/use-tree-state",
"repository": {
"type": "git",
"url": "[email protected]:shunjizhan/use-tree-state.git"
},
"bugs": {
"url": "https://github.com/shunjizhan/use-tree-state/issues"
},
"author": "Shunji Zhan <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"react",
"react-hooks",
"hook",
"custom-hook",
"react-state-management",
"tree-state",
"react-state",
"react-state-hook",
"state-management",
"treeview",
"recursion",
"tree-structure",
"npm-package",
"npm-module",
"folder-picker",
"folder-viewer",
"recursion-problem",
"folder-structure",
"folder-tooling",
"folder-tree",
"recursion-tree",
"recursions",
"recursion",
"tree-structure",
"treeview",
"folder-viewer",
"folder-structure",
"folder-tooling",
"treeview-control",
"tree-node",
"treeview-component",
"recursion-tree"
],
"scripts": {
"watch": "yarn nodemon --watch src/ -C -e ts,js -x 'yarn build'",
"prepublish": "yarn build",
"prebuild": "rm -rf dist/",
"build": "webpack --config webpack.config.js",
"lint": "eslint src/ --ext .js,.jsx",
"test": "jest --collect-coverage"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@testing-library/react-hooks": "^7.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-terminal-webpack-plugin": "^3.0.0",
"codecov": "^3.8.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.1",
"nodemon": "^2.0.7",
"react": "^16.8.0 || ^17",
"react-dom": "^16.8.0 || ^17",
"webpack": "^5.37.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17",
"react-dom": "^16.8.0 || ^17"
}
}