-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
110 lines (110 loc) · 3.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
{
"name": "react-jsplumb-flow",
"version": "0.8.6",
"main": "lib/index.js",
"dependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0-beta.40",
"antd": "^3.11.2",
"autoprefixer": "7.1.6",
"axios": "^0.18.0",
"babel-loader": "8.0.4",
"babel-plugin-import": "^1.11.0",
"babel-preset-react-app": "^7.0.0",
"babel-runtime": "7.0.0-beta.3",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"chalk": "1.1.3",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "0.28.7",
"dotenv": "4.0.0",
"dotenv-expand": "4.2.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "1.1.6",
"fs-extra": "3.0.1",
"html-webpack-plugin": "^3.2.0",
"immutable": "^4.0.0-rc.12",
"jsplumb": "^2.7.16",
"lodash": "^4.17.11",
"object-assign": "4.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-loader": "2.0.8",
"promise": "8.0.1",
"prop-types": "^15.6.1",
"raf": "3.4.0",
"react": "^16.3.2",
"react-ace": "^6.3.2",
"react-dev-utils": "^5.0.1",
"react-dnd": "^7.0.2",
"react-dnd-html5-backend": "^7.0.2",
"react-dom": "^16.3.2",
"react-draggable": "^3.0.5",
"react-dragula": "^1.1.17",
"react-redux": "^6.0.0",
"react-resizable": "^1.7.6",
"react-router-dom": "^4.3.1",
"react-sortable-tree": "^2.6.0",
"react-sortable-tree-theme-bms": "^1.0.11",
"redux": "^4.0.1",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"resolve": "1.6.0",
"style-loader": "0.19.0",
"sw-precache-webpack-plugin": "0.11.4",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "0.6.2",
"webpack": "4.19.1",
"webpack-dev-server": "3.1.14",
"webpack-manifest-plugin": "1.3.2",
"webpack-node-externals": "^1.7.2",
"whatwg-fetch": "2.0.3"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"test": "node scripts/test.js --env=jsdom",
"clean": "rd /s/q lib && mkdir lib",
"lib": "yarn clean && babel src --out-dir lib --copy-files",
"libBuild": "webpack --progress",
"dev": "webpack-dev-server --config webpack.dev.config.js --open --port 3000 --hot --mode development",
"pub": "webpack --config webpack.pub.config.js --progress --mode production"
},
"babel": {
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"import",
{
"libraryName": "antd",
"libraryDirectory": "es",
"style": "css"
}
]
],
"presets": [
"@babel/react",
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions"
]
}
}
]
]
},
"devDependencies": {
"webpack-cli": "^3.2.1"
}
}