-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.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
{
"name": "react-draggable-tree",
"version": "0.7.0",
"description": "Draggable tree view for React",
"homepage": "https://github.com/seanchas116/react-draggable-tree#readme",
"bugs": {
"url": "https://github.com/seanchas116/react-draggable-tree/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seanchas116/react-draggable-tree.git"
},
"files": [
"dist"
],
"license": "MIT",
"author": "Ryohei Ikegami",
"type": "module",
"main": "dist/react-draggable-tree.js",
"typings": "dist/react-draggable-tree.d.ts",
"scripts": {
"build": "tsc && vite build",
"build-storybook": "storybook build",
"storybook": "storybook dev -p 6006"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@storybook/addon-actions": "^7.1.0",
"@storybook/addon-essentials": "^7.1.0",
"@storybook/addon-interactions": "^7.1.0",
"@storybook/addon-links": "^7.1.0",
"@storybook/react": "^7.1.0",
"@storybook/react-vite": "^7.1.0",
"@storybook/testing-library": "^0.2.0",
"@types/node": "^20.4.4",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"babel-loader": "^9.1.3",
"lorem-ipsum": "^2.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.1.0",
"tiny-typed-emitter": "^2.1.0",
"typescript": "^5.1.6",
"vite": "^4.4.6",
"vite-plugin-dts": "^3.3.1"
},
"dependencies": {
"events": "^3.3.0"
}
}