-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 971 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 971 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
32
33
{
"name": "xprtz-websites",
"private": true,
"version": "0.1.0",
"author": "Alex Schouls",
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/dotnet",
"apps/learning",
"libs/ui",
"libs/cms"
],
"scripts": {
"format": "prettier ./**/*.{js,ts,html,css,scss,json,mjs,tsx} --write && eslint ./**/*.{js,ts,mjs,tsx}",
"develop:dotnet": "npm run --workspace=apps/dotnet develop",
"develop:learning": "npm run --workspace=apps/learning develop",
"build": "npm run --workspaces --if-present build",
"build:dotnet": "npm run --workspace=apps/dotnet build",
"build:learning": "npm run --workspace=apps/learning build",
"build:ui": "npm run --workspace=libs/ui build"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.3.0",
"prettier": "3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.20"
}
}