-
Notifications
You must be signed in to change notification settings - Fork 596
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.03 KB
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
{
"name": "@fmc/main",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "nx run-many -t dev --maxParallel=8",
"build": "nx run-many -t build",
"lint": "nx run-many -t lint",
"build-baseless": "nx run-many -t build-baseless",
"copy-to-dist": "rm -rf dist && cp -r apps/host/dist dist && cp -r apps/css/dist dist/css && cp -r apps/javascript/dist dist/javascript && cp -r apps/react/dist dist/react && cp -r apps/vue/dist dist/vue && cp -r apps/angular/dist/angular/browser dist/angular",
"unit:test": "nx run-many -t unit:test",
"prettify": "pretty-quick --staged",
"prepare": "husky"
},
"engines": {
"node": "^24.19.0"
},
"overrides": {
"typescript": "$typescript"
},
"devDependencies": {
"@nx/js": "^23.1.2",
"@playwright/test": "^1.62.1",
"@types/node": "^24.13.3",
"husky": "^9.1.7",
"nx": "^23.1.2",
"prettier": "^3.9.6",
"pretty-quick": "^4.2.2",
"typescript": "~6.0.3"
},
"workspaces": [
"apps/*",
"shared/*"
]
}