-
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) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 915 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
{
"name": "chat-mate",
"version": "1.35.0",
"private": true,
"workspaces": {
"packages": [
"./projects/*"
]
},
"engines": {
"node": ">=18.7.0"
},
"scripts": {
"lint-server": "eslint ./projects/server/**/*.ts",
"lint-server-error": "eslint ./projects/server/**/*.ts --quiet",
"check-links": "find . -name \\*.md -not -path \"*/node_modules/**\" -not -path \"./projects/masterchat/**\" -print0 | xargs -0 -n1 yarn markdown-link-check --config markdown-link-check.config.json"
},
"_moduleAliases": {
"@rebel/server": "./dist/server",
"@rebel/masterchat": "./dist/masterchat/src",
"@rebel/shared": "./dist/shared",
"@rebel/api-models": "./dist/api-models"
},
"devDependencies": {
"@types/eslint": "^8.4.1",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"markdown-link-check": "^3.11.2"
}
}