-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
32 lines (32 loc) · 958 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
{
"name": "@ddd-video-club-v2/root",
"packageManager": "[email protected]",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "yarn workspaces foreach -vpt run build",
"tsc": "yarn workspaces foreach -vpt run tsc",
"lint": "eslint packages/\\*\\*",
"prettier": "prettier --write ."
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@types/eslint": "^8",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": ">=5.31.0",
"@typescript-eslint/parser": ">=5.31.0",
"eslint": ">=8.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo": "latest",
"eslint-config-xo-typescript": "latest",
"prettier": "2.7.1",
"process": "^0.11.10",
"typescript": "<5.2.0"
},
"main": "index.js",
"author": "Matthias Bohlen <[email protected]>"
}