forked from Asweallcan/react-flex-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.16 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
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
{
"name": "react-flex-dnd",
"version": "1.1.4",
"description": "react drag and drop sorting supports flex layout",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist types && webpack --config ./config/webpack.prod.js",
"dev:site": "webpack-dev-server --config ./config/webpack.demo.js --mode=development --open",
"build:site": "rm -rf demo_dist index.html && webpack --config ./config/webpack.demo.js --mode=production && mv ./demo_dist/index.html ."
},
"repository": {
"type": "git",
"url": "https://github.com/Asweallcan/react-flex-dnd"
},
"keywords": [
"React",
"sortable",
"sorting",
"drag",
"drop",
"dragndrop",
"draganddrop",
"flex",
"react-component"
],
"files": [
"dist",
"types"
],
"types": "types/index.d.ts",
"author": "shihaolv <296877137@qq.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/lodash": "^4.14.177",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.15",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "2.5.1",
"html-webpack-plugin": "^5.5.0",
"ignore-loader": "^0.1.2",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"postcss": "^8.3.11",
"postcss-loader": "^6.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flex-dnd": "^1.1.4",
"style-loader": "^3.3.1",
"styled-components": "^5.3.3",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
}
}