-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 2.27 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
{
"name": "use-tree",
"license": "MIT",
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"author": {
"name": "Sebastiaan Besselsen",
"email": "[email protected]"
},
"homepage": "https://github.com/elseu/use-tree",
"repository": {
"type": "git",
"url": "git+https://github.com/elseu/use-tree.git"
},
"bugs": {
"url": "https://github.com/elseu/use-tree/issues"
},
"scripts": {
"build": "rimraf dist; rollup -c; rimraf \"dist/*.stories.d.ts\"",
"dev": "start-storybook -p 6006",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "tslint --project .",
"lint-fix": "tslint --project . --fix",
"prepublishOnly": "npm run lint; npm run build",
"deploy": "semantic-release"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react",
"hooks",
"react-hooks"
],
"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"
]
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@storybook/addon-essentials": "^6.4.21",
"@storybook/addon-links": "^6.4.21",
"@storybook/addons": "^6.4.21",
"@storybook/builder-webpack5": "^6.4.21",
"@storybook/manager-webpack5": "^6.4.21",
"@storybook/preset-create-react-app": "^4.1.0",
"@storybook/react": "^6.4.21",
"@types/jest": "27.4.1",
"@types/node": "17.0.23",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.15",
"eslint": "^8.13.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-url": "^3.0.0",
"semantic-release": "^19.0.2",
"tslint": "^5.20.1",
"tslint-react": "^4.1.0",
"typescript": "^4.6.3",
"webpack": "^5.72.0"
},
"dependencies": {
"use-binding": "^2.0.0"
},
"version": "2.0.0"
}