-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.53 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@mendix/calendar-web",
"widgetName": "Calendar",
"version": "2.3.0",
"description": "Calendar",
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mendix/web-widgets.git"
},
"config": {},
"mxpackage": {
"name": "Calendar",
"type": "widget",
"mpkName": "com.mendix.widget.web.calendar.mpk"
},
"packagePath": "com.mendix.widget.web",
"marketplace": {
"minimumMXVersion": "10.22.0",
"appName": "Calendar"
},
"testProject": {
"githubUrl": "https://github.com/mendix/testProjects",
"branchName": "calendar-web"
},
"scripts": {
"benchmark:vite": "node ../../shared/vite-web-widgets/benchmark.js @mendix/calendar-web",
"build": "cross-env MPKOUTPUT=Calendar.mpk pluggable-widgets-tools build:web",
"build:vite": "vite build --config vite.config.js",
"create-gh-release": "rui-create-gh-release",
"create-translation": "rui-create-translation",
"dev": "cross-env MPKOUTPUT=Calendar.mpk pluggable-widgets-tools start:web",
"e2e": "echo \"Skipping this e2e test\"",
"e2edev": "run-e2e dev --with-preps",
"format": "pluggable-widgets-tools format",
"lint": "eslint --ext .jsx,.js,.ts,.tsx src/",
"publish-marketplace": "rui-publish-marketplace",
"release": "cross-env MPKOUTPUT=Calendar.mpk pluggable-widgets-tools release:web",
"start": "cross-env MPKOUTPUT=Calendar.mpk pluggable-widgets-tools start:server",
"test": "cross-env TZ=UTC jest --projects jest.config.js",
"update-changelog": "rui-update-changelog-widget",
"verify": "rui-verify-package-format"
},
"dependencies": {
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"react-big-calendar": "^1.19.4"
},
"devDependencies": {
"@mendix/automation-utils": "workspace:*",
"@mendix/eslint-config-web-widgets": "workspace:*",
"@mendix/pluggable-widgets-tools": "*",
"@mendix/prettier-config-web-widgets": "workspace:*",
"@mendix/run-e2e": "workspace:^*",
"@mendix/widget-plugin-component-kit": "workspace:*",
"@mendix/widget-plugin-hooks": "workspace:*",
"@mendix/widget-plugin-platform": "workspace:*",
"@mendix/widget-plugin-test-utils": "workspace:*",
"@types/react-big-calendar": "^1.16.2",
"cross-env": "^7.0.3"
}
}