-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "showmore",
"widgetName": "ShowMore",
"version": "1.1.0",
"description": "Expand and truncate longer text and html attributes",
"copyright": "Mendix 2020",
"author": "Jounior Phomma",
"config": {
"widgetPath": "../..//widgets",
"projectPath": "../..//",
"mendixHost": "http://localhost:8080",
"developmentPort": "3000"
},
"packagePath": "",
"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",
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^8.7.2",
"@types/big.js": "^4.0.5",
"@types/classnames": "^2.2.4",
"@types/jest": "^24.0.0",
"@types/react": "~16.9.0",
"@types/react-dom": "~16.9.0",
"@types/react-test-renderer": "~16.9.0"
},
"dependencies": {
"classnames": "^2.2.6"
}
}