-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.09 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.09 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
{
"name": "@mendix/scripts",
"version": "0.1.0",
"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"
},
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "echo 'Lint disabled for now, please update package scripts'",
"lint:enableme": "eslint . --ext .mjs",
"root-script:commitlint": "commitlint",
"root-script:format-staged": "pretty-quick --staged --config \"./.prettierrc.cjs\" --pattern \"**/{src,script,typings,test,**}/**/*.{cjs,mjs,js,jsx,ts,tsx,scss,xml,md,json}\"",
"update-screenshots": "node update-screenshots.mjs"
},
"dependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@mendix/prettier-config-web-widgets": "workspace:*",
"pretty-quick": "^4.1.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}