-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 869 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 869 Bytes
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
{
"name": "monorepo",
"private": true,
"workspaces": [
"packages/*",
"services/*"
],
"description": "## Overview",
"version": "1.0.0",
"scripts": {
"lint": "eslint packages/ services/ --ext .ts",
"lint:fix": "eslint --fix packages/ services/ --ext .ts ",
"prebuild": "yarn workspaces foreach -A run install",
"build": "yarn workspaces foreach -A run build"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"lerna": "^8.1.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"author": "Njall Skarphedinsson",
"license": "ISC",
"packageManager": "yarn@4.1.0"
}