-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.33 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.33 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
39
40
41
42
{
"name": "attributehelper",
"widgetName": "AttributeHelper",
"version": "2.0.0",
"description": "Set attributes on elements based on your context",
"copyright": "Mendix 2019",
"author": "Jelte Lagendijk <jelte.lagendijk@mendix.com>",
"config": {
"widgetPath": "./dist/MxTestProject/widgets",
"projectPath": "./dist/MxTestProject/",
"mendixHost": "http://windows: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.6.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",
"webpack-bundle-analyzer": "^4.4.2"
},
"dependencies": {
"big.js": "^5.2.2",
"cash-dom": "^4.1.5",
"classnames": "^2.2.6",
"mutationobserver-polyfill": "^1.3.0",
"tsdom": "^0.6.9"
}
}