forked from RyoSogawa/react-resizable-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.36 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
{
"name": "react-resizable-layout",
"description": "Lightweight headless React component and hook for resizable layout with Drag and Drop.",
"author": "RyoSogawa",
"version": "0.3.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/RyoSogawa/react-resizable-layout.git"
},
"bugs": {
"url": "https://github.com/RyoSogawa/react-resizable-layout/issues"
},
"homepage": "https://github.com/RyoSogawa/react-resizable-layout",
"keywords": [
"react",
"react-hooks",
"react-component",
"headless",
"dnd",
"resize",
"typescript"
],
"source": "./src/index.ts",
"main": "./lib/index.js",
"module": "./lib/index.module.js",
"types": "./lib/index.d.ts",
"scripts": {
"prebuild": "rimraf ./lib",
"build": "microbundle --jsx React.createElement --no-sourcemap --compress",
"format": "prettier --write \"src/**/*.(js|ts|jsx|tsx)\"",
"lint": "eslint src --ext .js,.ts,.jsx,.tsx",
"lint:fix": "yarn lint --fix",
"test": "tsc --noEmit && yarn lint",
"prepublishOnly": "yarn test && yarn build",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ./docs"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@storybook/addon-actions": "^6.4.20",
"@storybook/addon-essentials": "^6.4.20",
"@storybook/addon-links": "^6.4.20",
"@storybook/addon-storysource": "^6.4.20",
"@storybook/react": "^6.4.20",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-loader": "^8.2.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-storybook": "^0.5.7",
"husky": "^7.0.0",
"lint-staged": "^12.3.3",
"microbundle": "^0.15.0",
"prettier": "^2.5.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}