-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "@backstage-community/plugins",
"private": true,
"version": "0.0.0",
"repository": "[email protected]:backstage/community-plugins.git",
"engines": {
"node": "18 || 20"
},
"scripts": {
"create-workspace": "community-cli workspace create",
"postinstall": "husky",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"type": "module",
"packageManager": "[email protected]",
"devDependencies": {
"@backstage-community/cli": "portal:./workspaces/repo-tools/packages/cli",
"@backstage/cli": "^0.27.0",
"@backstage/cli-node": "^0.2.2",
"@changesets/parse": "^0.4.0",
"@manypkg/get-packages": "^2.2.2",
"@octokit/rest": "^20.1.1",
"@spotify/eslint-plugin": "^15.0.0",
"@spotify/prettier-config": "^15.0.0",
"array-to-table": "^1.0.1",
"eslint": "^8.6.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-testing-library": "^6.0.0",
"fs-extra": "11.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"lodash.escaperegexp": "^4.1.2",
"node-fetch": "^2.6.7",
"prettier": "^2.3.2"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}