-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "actionbykey",
"widgetName": "ActionByKey",
"version": "1.0.0",
"description": "Start a action by pressing a key",
"copyright": "Mendix 2019",
"author": "GDK Software",
"config": {
"widgetPath": "../..//widgets",
"projectPath": "../..//",
"mendixHost": "http://localhost:8080",
"developmentPort": "3000"
},
"packagePath": "mendix",
"scripts": {
"start": "concurrently \"pluggable-widgets-tools start:server --open\" \"npm:dev\"",
"dev": "pluggable-widgets-tools start:ts",
"build": "pluggable-widgets-tools build:ts",
"lint": "pluggable-widgets-tools lint",
"lint:fix": "pluggable-widgets-tools lint:fix",
"prerelease": "npm run lint",
"release": "pluggable-widgets-tools release:ts"
},
"license": "Apache-2.0",
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^8.2.0",
"@types/big.js": "^4.0.5",
"@types/classnames": "^2.2.4",
"@types/jest": "^24.0.0",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-test-renderer": "^16.8.1"
},
"dependencies": {
"big.js": "^5.2.2",
"classnames": "^2.2.6"
}
}