-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
43 lines (43 loc) · 1.11 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
{
"private": true,
"name": "root",
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "yarn workspaces foreach run build",
"deploy": "monodeploy --config-file monodeploy.config.js",
"format": "prettier --write .",
"lint": "eslint \"**/{src,tests}/**/*\"",
"test": "yarn workspaces foreach run test",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@tophat/conventional-changelog-config": "^1.0.1",
"@types/eslint": "^8.44.8",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"monodeploy": "5.0.1",
"prettier": "^3.1.0",
"typescript": "5.3.2"
},
"dependenciesMeta": {
"@playwright/test": {
"unplugged": true
}
},
"resolutions": {
"parse-url": "8.1.0"
}
}