-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "construction-calculators",
"private": true,
"description": "42 React construction calculators with pure calculation functions — concrete, roofing, flooring, HVAC, plumbing, and more.",
"workspaces": [
"packages/*",
"demo"
],
"scripts": {
"build": "npm run build --workspace packages/calculators && npm run build --workspace demo",
"build:pkg": "npm run build --workspace packages/calculators",
"build:demo": "npm run build --workspace demo",
"dev:demo": "npm run dev --workspace demo",
"typecheck": "npm run typecheck --workspace packages/calculators && npm run typecheck --workspace demo",
"lint": "npm run lint --workspace demo"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/estimatorsuite/construction-calculators"
},
"homepage": "https://estimatorsuite.github.io/construction-calculators/"
}