-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.04 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.04 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
{
"name": "@rinfel/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint .",
"lint:build": "yarn workspace @rinfel/lint run build",
"lint:clean": "yarn workspace @rinfel/lint run clean",
"lint:do": "yarn workspace @rinfel/lint",
"kernel:build": "yarn workspace @rinfel/kernel run build",
"kernel:clean": "yarn workspace @rinfel/kernel run clean",
"kernel:do": "yarn workspace @rinfel/kernel"
},
"packageManager": "yarn@3.1.1",
"devDependencies": {
"@rinfel/eslint-plugin-unicorn": "40.0.0-1",
"@rinfel/lint": "workspace:*",
"@types/eslint": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-promise": "^6.0.0",
"typescript": "^4.5.4"
}
}