-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 916 Bytes
/
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
{
"name": "backstage-plugin-openslo",
"main": "index.ts",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "lerna run build",
"tsc": "lerna run tsc",
"tsc:full": "lerna run tsc:full",
"clean": "lerna run clean",
"diff": "lerna run diff --",
"test:all": "lerna run test -- --coverage",
"lint": "lerna run lint --since origin/main --",
"lint:all": "lerna run lint --",
"prettier": "prettier .",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check ."
},
"workspaces": {
"packages": [
"plugins/**"
]
},
"devDependencies": {
"@spotify/prettier-config": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-plugin-react": "^7.30.1",
"lerna": "^6.0.2",
"prettier": "^2.3.2"
},
"dependencies": {
"@backstage/cli": "^0.20.0",
"typescript": "^4.8.4"
}
}