forked from Itvisors/mendix-AutocompleteMultiselect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.03 KB
/
package.json
File metadata and controls
32 lines (32 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
{
"name": "autocompletemultiselect",
"widgetName": "AutocompleteMultiselect",
"version": "1.0.0",
"description": "Auto complete widget where multiple options can be selected. Based on https://material-ui.com/components/autocomplete/",
"copyright": "ITvisors (2020)",
"author": "Johan Munneke",
"config": {
"projectPath": "./test/",
"mendixHost": "http://localhost:8080",
"developmentPort": "3000"
},
"packagePath": "itvisors",
"scripts": {
"start": "pluggable-widgets-tools start:server --open",
"dev": "pluggable-widgets-tools start:web",
"build": "pluggable-widgets-tools build:web",
"lint": "pluggable-widgets-tools lint",
"lint:fix": "pluggable-widgets-tools lint:fix",
"prerelease": "npm run lint",
"release": "pluggable-widgets-tools release:web"
},
"license": "Apache-2.0",
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^9.6.1"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/lab": "^4.0.0-alpha.60",
"classnames": "^2.2.6"
}
}