-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.11 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "22 || 24 "
},
"scripts": {
"build": "backstage-cli repo build --all",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck false --incremental false",
"clean": "backstage-cli repo clean",
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",
"test:changed": "backstage-cli repo test --onlyChanged --coverage --silent",
"test:silent": "backstage-cli repo test --silent --coverage",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"create-plugin": "echo \"use 'yarn new' instead\"",
"new": "backstage-cli new --scope internal"
},
"workspaces": {
"packages": [
"plugins/*"
]
},
"devDependencies": {
"@backstage/cli": "backstage:^",
"@changesets/cli": "^2.27.3",
"@jest/environment-jsdom-abstract": "^30.2.0",
"@spotify/eslint-config-react": "^15.0.0",
"@spotify/eslint-plugin": "^15.0.0",
"@spotify/prettier-config": "^15.0.0",
"@types/jest": "^30.0.0",
"concurrently": "^8.0.0",
"eslint": "^8.6.0",
"eslint-plugin-jest": "*",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-testing-library": "^6.0.0",
"husky": "^9.1.6",
"jest": "^30.2.0",
"jsdom": "^27.3.0",
"lint-staged": "^15.1.0",
"node-gyp": "^10.0.0",
"prettier": "^2.2.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.30.2",
"typescript": "~5.7.0"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix ."
]
},
"jest": {
"coveragePathIgnorePatterns": [
"plugins/opa-frontend-demo",
"plugins/opa-backend-demo"
],
"testPathIgnorePatterns": [
"plugins/opa-frontend-demo",
"plugins/opa-backend-demo"
]
},
"packageManager": "yarn@4.12.0"
}