-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 914 Bytes
/
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
{
"name": "treewidget",
"version": "0.1.0",
"description": "A minimal code example showing how to build your own editor widgets with React",
"main": "dist/TreeWidget.js",
"module": "dist/TreeWidget.js",
"scripts": {
"build": "webpack --mode=production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Rainer Simon",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^5.2.5",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^3.1.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"lodash": "^4.17.21",
"preact": "^10.4.1",
"react-dropdown-tree-select": "^2.5.1"
}
}