forked from janus-idp/backstage-showcase
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "16 || 18"
},
"scripts": {
"preinstall": "npx only-allow yarn",
"ci": "turbo run lint build test",
"start": "turbo run start --parallel",
"build": "turbo run build",
"tsc": "tsc",
"clean": "turbo run clean",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"test:e2e-ci": "turbo run test:e2e-ci",
"lint": "turbo run lint",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"new": "backstage-cli new --scope internal",
"prepare": "husky install"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"devDependencies": {
"@backstage/cli": "^0.22.7",
"@changesets/cli": "^2.26.1",
"@spotify/prettier-config": "^12.0.0",
"husky": "^8.0.3",
"prettier": "^2.3.2",
"turbo": "^1.9.3",
"typescript": "^5.0.4"
},
"resolutions": {
"@types/react": "17.0.60",
"@types/react-dom": "17.0.20"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.19"
}