-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
65 lines (65 loc) · 2.33 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
{
"name": "filedropper",
"widgetName": "FileDropper",
"version": "1.4.1",
"description": "Drop files in your Mendix Application",
"copyright": "Mendix 2020",
"author": "Jelte Lagendijk <jelte.lagendijk@mendix.com>",
"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://tobeedetermined.io || set URL=https://tobeedetermined.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": "pluggable-widgets-tools release:js",
"analyze": "pluggable-widgets-tools release:js --analyze"
},
"license": "Apache-2.0",
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^8.7.2",
"@types/big.js": "^4.0.5",
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.149",
"@types/md5": "^2.2.0",
"@types/mime": "^2.0.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-test-renderer": "^16.9.2",
"@types/uuid": "^3.4.5",
"@types/webdriverio": "^5.0.0",
"mendix-client": "^7.15.8",
"webpack-bundle-analyzer": "^3.5.2"
},
"dependencies": {
"@bem-react/classname": "^1.5.8",
"@jeltemx/mendix-react-widget-utils": "^0.9.0",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"core-js": "^3.6.5",
"filesize": "^6.1.0",
"md5": "^2.2.1",
"mime": "^2.4.4",
"mobx": "^4.13.0",
"mobx-react": "^6.2.2",
"rc-progress": "^2.5.2",
"react-dropzone": "^11.2.3",
"react-icons": "^3.9.0",
"uuid": "^3.3.3"
}
}