forked from frontend-collective/react-sortable-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.02 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-sortable-tree",
"version": "2.7.1",
"description": "Drag-and-drop sortable component for nested data and hierarchies",
"scripts": {
"prebuild": "yarn run lint && yarn run clean",
"build": "rollup -c",
"build:storybook": "build-storybook -o build",
"clean": "rimraf dist",
"clean:storybook": "rimraf build",
"lint": "eslint src",
"prettier": "prettier --write \"{src,example/src,stories}/**/*.{js,css,md}\"",
"prepublishOnly": "yarn run test && yarn run build",
"release": "standard-version",
"test": "jest",
"test:watch": "jest --watchAll",
"storybook": "start-storybook -p ${PORT:-3001} -h 0.0.0.0",
"deploy": "gh-pages -d build"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"style.css"
],
"repository": {
"type": "git",
"url": "https://github.com/frontend-collective/react-sortable-tree"
},
"homepage": "https://frontend-collective.github.io/react-sortable-tree/",
"bugs": "https://github.com/frontend-collective/react-sortable-tree/issues",
"authors": [
"Chris Fritz"
],
"license": "MIT",
"jest": {
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js"
],
"setupFiles": [
"./test-config/shim.js",
"./test-config/test-setup.js"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(css|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"^dnd-core$": "dnd-core/dist/cjs",
"^react-dnd$": "react-dnd/dist/cjs",
"^react-dnd-html5-backend$": "react-dnd-html5-backend/dist/cjs",
"^react-dnd-touch-backend$": "react-dnd-touch-backend/dist/cjs",
"^react-dnd-test-backend$": "react-dnd-test-backend/dist/cjs",
"^react-dnd-test-utils$": "react-dnd-test-utils/dist/cjs"
}
},
"browserslist": [
"IE 11",
"last 2 versions",
"> 1%"
],
"dependencies": {
"frontend-collective-react-dnd-scrollzone": "^1.0.2",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.6.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-lifecycles-compat": "^3.0.4",
"react-virtualized": "^9.21.2"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dnd": "^7.3.0",
"react-dom": "^16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@storybook/addon-storyshots": "^5.2.6",
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.2.6",
"@storybook/theming": "^5.3.17",
"autoprefixer": "^9.7.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.4",
"codesandbox": "~2.1.10",
"coveralls": "^3.0.1",
"cross-env": "^6.0.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"jest-enzyme": "^7.1.2",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"react": "^16.11.0",
"react-addons-shallow-compare": "^15.6.2",
"react-dnd-test-backend": "^11.1.3",
"react-dnd-touch-backend": "^9.4.0",
"react-dom": "^16.11.0",
"react-hot-loader": "^4.12.17",
"react-sortable-tree-theme-file-explorer": "^2.0.0",
"react-test-renderer": "^16.11.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"standard-version": "^8.0.1"
},
"keywords": [
"react",
"react-component"
]
}