forked from frontend-collective/react-sortable-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4.08 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
{
"name": "react-sortable-tree",
"version": "1.4.0",
"description": "Drag-and-drop sortable component for nested data and hierarchies",
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production TARGET=umd webpack --bail",
"build:demo": "npm run clean:demo && cross-env NODE_ENV=production TARGET=demo webpack --bail && npm run build-storybook",
"clean": "rimraf dist",
"clean:demo": "rimraf build",
"start": "cross-env NODE_ENV=development TARGET=development webpack-dev-server --inline --hot",
"lint": "eslint src examples",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"{src,examples}/**/*.{js,scss}\"",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage && ./cc-test-reporter after-build --id=\"d957b5ff2f78e200b7cfa4e294ac1fe52c823c7d7c327628f897271dc72a874e\"",
"deploy": "npm run build:demo && gh-pages -d build",
"storybook": "cross-env TARGET=development start-storybook -p 3001 -h 0.0.0.0",
"build-storybook": "cross-env NODE_ENV=production TARGET=demo build-storybook -o build/storybook"
},
"main": "dist/main.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/fritz-c/react-sortable-tree"
},
"homepage": "https://fritz-c.github.io/react-sortable-tree",
"bugs": "https://github.com/fritz-c/react-sortable-tree/issues",
"authors": [
"Chris Fritz"
],
"license": "MIT",
"jest": {
"setupTestFrameworkScriptFile": "./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": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss|less)$": "identity-obj-proxy"
}
},
"dependencies": {
"lodash.isequal": "^4.4.0",
"prop-types": "^15.6.0",
"react-dnd": "2.5.4",
"react-dnd-html5-backend": "2.5.4",
"react-dnd-scrollzone": "^4.0.0",
"react-virtualized": "^9.10.1"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.12",
"@storybook/addon-notes": "^3.2.12",
"@storybook/addon-options": "^3.2.12",
"@storybook/addon-storyshots": "^3.2.12",
"@storybook/react": "^3.2.12",
"autoprefixer": "^7.1.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.11.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.5",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.30.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"jest-enzyme": "^4.0.1",
"json-loader": "^0.5.4",
"node-sass": "^4.0.0",
"postcss-loader": "^2.0.7",
"prettier": "^1.7.4",
"react": "^16.0.0",
"react-addons-shallow-compare": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-dnd-test-backend": "^2.5.4",
"react-dnd-touch-backend": "^0.3.15",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.1",
"webpack-node-externals": "^1.6.0"
},
"keywords": [
"react",
"react-component"
]
}