-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.08 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.08 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
{
"name": "manager-examples",
"version": "0.0.1",
"type": "module",
"private": true,
"workspaces": [
"**"
],
"scripts": {
"clean": "node .maintenance/scripts/clean.js",
"packages:install": "node .maintenance/scripts/install.js",
"packages:update": "npm up --save --workspaces --include-workspace-root && npm audit fix --workspaces --include-workspace-root || echo 'Done.'",
"test": "node .maintenance/scripts/test.js",
"build": "npm run build --workspaces --if-present",
"format": "prettier --cache --write .",
"format-check": "prettier --cache --check .",
"exec": "node .maintenance/scripts/exec.js",
"all": "npm run clean && npm i && npm run packages:install && npm run packages:update && npm run format && npm run build && npm run test && npm audit --workspaces --include-workspace-root"
},
"dependencies": {
"commander": "^14.0.3",
"dotenv": "^17.2.3",
"zx": "^8.8.5"
},
"devDependencies": {
"prettier": "^3.8.1"
},
"overrides": {
"@interopio/manager-admin-ui": {
"@interopio/manager-api": "latest"
}
}
}