-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
116 lines (116 loc) · 3.68 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
109
110
111
112
113
114
115
116
{
"name": "@minoru/react-dnd-treeview",
"description": "A draggable / droppable React-based treeview component.",
"version": "3.5.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/minop1205/react-dnd-treeview.git"
},
"author": "Minoru Okuyama <okuyama@analogic.jp> (https://github.com/minop1205/)",
"homepage": "https://github.com/minop1205/react-dnd-treeview",
"keywords": [
"drag and drop",
"dnd",
"react",
"tree",
"treeview",
"component",
"headless component",
"touch support",
"sortable",
"hierarchical data"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@juggle/resize-observer": "^3.3.1",
"dnd-multi-backend": "^7.0.0-alpha.4",
"framer-motion": "^6.2.8",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-use-measure": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.18.9",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.2",
"@rollup/plugin-alias": "^3.1.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/jest": "^0.0.10",
"@storybook/react": "^6.5.9",
"@storybook/test-runner": "^0.5.0",
"@storybook/testing-library": "^0.0.13",
"@storybook/testing-react": "1.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/css-modules": "^1.0.2",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^27.5.2",
"@types/react": "^18.0.15",
"@types/react-dnd-multi-backend": "^6.0.2",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.5",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"jest": "^27.5.1",
"npm-check-updates": "^16.0.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dom": "^18.2.0",
"rollup": "^2.77.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.32.1",
"storybook-css-modules-preset": "^1.1.1",
"ts-jest": "^27.1.5",
"tslib": "^2.4.0",
"ttypescript": "^1.5.13",
"typescript": "^4.7.4",
"typescript-transform-paths": "^3.3.1"
},
"peerDependencies": {
"react": "17.x || 18.x",
"react-dnd": "15.x || 16.x",
"react-dom": "17.x || 18.x"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "npx tsc --noEmit && npx eslint --ext .tsx --ext .ts --fix src/",
"prepublish": "rm -rf ./dist && npm run build",
"test": "jest",
"storybook": "start-storybook -p 6006 -s ./src/stories/assets",
"storybook:build": "STORYBOOK_DISABLE_INTERACTIONS=true build-storybook",
"storybook:test": "npx test-storybook",
"storybook:deploy": "npm run storybook:build && gh-pages -d storybook-static"
},
"bugs": {
"url": "https://github.com/minop1205/react-dnd-treeview/issues",
"email": "okuyama@analogic.jp"
}
}