-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 816 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 816 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
{
"name": "shell-factory",
"version": "0.1.0",
"private": true,
"description": "Production-ready repo factory workspace",
"workspaces": [
"micro-saas-template-v2",
"factory-control-center",
"repo-factory-shell",
"ai-privacy-gateway"
],
"scripts": {
"ci": "npm run typecheck --workspaces --if-present && npm run test --workspaces --if-present && npm run build --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"security:scan": "bash tools/scanners/run-all.sh ."
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"overrides": {
"postcss": "8.5.15",
"next": {
"postcss": "8.5.15"
}
}
}