-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "@mia-platform/backstage-plugin",
"version": "1.0.0",
"packageManager": "yarn@4.1.1",
"license": "SEE LICENSE IN LICENSE",
"author": "Mia Platform Core Team <core@mia-platform.eu>",
"workspaces": [
"packages/*"
],
"scripts": {
"fe": "yarn workspace @mia-platform/backstage-plugin-frontend",
"be": "yarn workspace @mia-platform/backstage-plugin-backend",
"prettier:check": "prettier --check .",
"build": "yarn workspaces foreach -A run build",
"lint": "yarn workspaces foreach -A run lint",
"test": "yarn workspaces foreach -A run test --no-watch",
"bump": "ts-node scripts/bump.ts"
},
"devDependencies": {
"@backstage/cli": "^0.26.2",
"@spotify/prettier-config": "^15.0.0",
"@ts-type/package-dts": "^2.0.8",
"@types/semver": "^7",
"commander": "^12.0.0",
"prettier": "^2.3.2",
"semver": "^7.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=v18"
}
}