-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.5 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "treeview",
"widgetName": "TreeView",
"version": "1.4.0",
"description": "TreeView for Mendix",
"copyright": "Jelte Lagendijk 2019",
"author": "Jelte Lagendijk <[email protected]>",
"config": {
"widgetPath": "./dist/MxTestProject/widgets",
"projectPath": "./dist/MxTestProject/",
"mendixHost": "http://windows:8080",
"developmentPort": "3000"
},
"packagePath": "com.mendix.widget.custom",
"scripts": {
"start": "concurrently \"pluggable-widgets-tools start:server --open\" \"npm:dev\"",
"dev": "pluggable-widgets-tools start:js",
"build": "pluggable-widgets-tools build:js",
"lint": "pluggable-widgets-tools lint",
"lint:fix": "pluggable-widgets-tools lint:fix",
"pretest": "npm run lint && npm run build",
"test": "pluggable-widgets-tools test:unit --no-cache --ci && npm run test:e2e",
"test:unit": "pluggable-widgets-tools test:unit --coverage",
"test:e2e": "export URL=https://badge.mxapps.io || set URL=https://badge.mxapps.io && pluggable-widgets-tools test:e2e:ts",
"test:e2e:dev": "export DEBUG=true || set DEBUG=true && pluggable-widgets-tools test:e2e:ts",
"prerelease": "npm run lint",
"release": "node --max_old_space_size=8000 ./node_modules/.bin/pluggable-widgets-tools release:js",
"analyze": "node --max_old_space_size=8000 ./node_modules/.bin/pluggable-widgets-tools release:js --analyze"
},
"license": "Apache-2.0",
"devDependencies": {
"@mendix/pluggable-widgets-tools": "8.6.0",
"@types/big.js": "^4.0.5",
"@types/classnames": "^2.2.4",
"@types/debounce": "^1.2.0",
"@types/enzyme": "^3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jasmine": "^3.4.0",
"@types/jest": "^24.0.0",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-resize-detector": "^4.2.0",
"@types/react-test-renderer": "^16.8.1",
"@types/webdriverio": "^4.13.0",
"mendix-client": "^7.15.8",
"tslint": "^5.20.1",
"typescript": "^3.7.5",
"webpack-bundle-analyzer": "^3.6.0"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@bem-react/classname": "^1.5.6",
"@jeltemx/mendix-react-widget-utils": "^0.9.0",
"antd": "^4.15.5",
"array-to-tree": "^3.3.2",
"big.js": "^5.2.2",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"debounce": "^1.2.0",
"mobx": "^4.15.7",
"mobx-react": "^6.3.1",
"react-mustache-template-component": "^1.0.0",
"react-resize-detector": "^4.2.1",
"store2": "^2.12.0"
}
}