forked from zsjjs/react-field-mapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·77 lines (77 loc) · 2.31 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
{
"name": "react-field-mapping",
"version": "1.1.4",
"description": "基于react的表字段映射组件",
"scripts": {
"check": "jsinspect ./src",
"clear": "rm -rf dist&& mkdir dist",
"build": "npm run clear && cross-env NODE_ENV=production webpack --progress",
"start": "cross-env NODE_ENV=development webpack-dev-server --content-base"
},
"keywords": [
"react",
"drag",
"js",
"ts",
"typeScript",
"npm",
"field",
"table",
"mapping"
],
"homepage": "https://github.com/zsjjs/react-field-mapping",
"bugs": "https://github.com/zsjjs/react-field-mapping/issues",
"author": "yanjun",
"license": "MIT",
"main": "dist/fieldmapping.js",
"repository": "https://github.com/zsjjs/react-field-mapping.git",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-do-expressions": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-pipeline-operator": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cross-env": "^6.0.3",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.21.1",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"jsinspect": "^0.12.7",
"less-loader": "^5.0.0",
"style-loader": "^1.2.1",
"ts-loader": "^6.2.2",
"typescript": "^3.9.7",
"url-loader": "^2.3.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"less": "^3.12.2",
"lodash": "^4.17.20",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sortablejs": "^1.12.0"
}
}