-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@jooservices/react",
"private": true,
"description": "Shared React component packages for the JOOservices ecosystem",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jooservices/react.git"
},
"scripts": {
"lint": "npm run typecheck",
"build": "npm run build --prefix components/ui && npm run build --prefix components/config && npm run build --prefix components/layout && npm run build --prefix components/table && npm run build --prefix components/content && npm run build --prefix components/action-buttons && npm run build --prefix components/card && npm run build --prefix components/modal && npm run build --prefix components/toast && npm run build --prefix components/notifications && npm run build --prefix components/ai-waiting && npm run build --prefix components/login && npm run build --prefix components/media && npm run build --prefix components/form",
"test": "npm run test --prefix components/ui && npm run test --prefix components/config && npm run test --prefix components/layout && npm run test --prefix components/table && npm run test --prefix components/content && npm run test --prefix components/action-buttons && npm run test --prefix components/card && npm run test --prefix components/modal && npm run test --prefix components/toast && npm run test --prefix components/notifications && npm run test --prefix components/ai-waiting && npm run test --prefix components/login && npm run test --prefix components/media && npm run test --prefix components/form",
"typecheck": "npm run typecheck --prefix components/ui && npm run typecheck --prefix components/config && npm run typecheck --prefix components/layout && npm run typecheck --prefix components/table && npm run typecheck --prefix components/content && npm run typecheck --prefix components/action-buttons && npm run typecheck --prefix components/card && npm run typecheck --prefix components/modal && npm run typecheck --prefix components/toast && npm run typecheck --prefix components/notifications && npm run typecheck --prefix components/ai-waiting && npm run typecheck --prefix components/login && npm run typecheck --prefix components/media && npm run typecheck --prefix components/form",
"demo": "npm run dev --prefix apps/demo",
"demo:build": "npm run build --prefix apps/demo",
"demo:typecheck": "npm run typecheck --prefix apps/demo"
},
"engines": {
"node": ">=18"
}
}