-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 KB
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
{
"homepage": "http://znwang25.github.io/react-dnd-multiple-selection",
"name": "react-dnd-multiple-selection",
"version": "1.0.0",
"description": "Implement multiple selection using react-dnd and hooks.",
"keywords": [
"react",
"multiple selection",
"react hook",
"react-dnd"
],
"main": "src/index.js",
"dependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^17.0.0",
"react-scripts": "^3.4.3"
},
"devDependencies": {
"gh-pages": "^3.1.0",
"typescript": "^3.8.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}