forked from dmarzzz/shape-rotator-os
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.06 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.06 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
{
"name": "shape-rotator-os",
"version": "0.1.0",
"private": true,
"description": "Shape Rotator OS — Electron app for the cohort. Atlas of indexed pages, alchemy view of the cohort (teams + projects + people), local-first peer search via swf-node, and a profile editor that submits PRs against this repo.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"os": "npm --workspace @shape-rotator/os start",
"os:dev": "npm --workspace @shape-rotator/os run dev",
"build:cohort": "node scripts/build-bundles.js",
"check:cohort": "node scripts/build-bundles.js --check",
"publish:cohort": "node scripts/publish-bundles.js",
"publish:cohort:dry": "node scripts/publish-bundles.js --dry-run",
"keys:gen": "node scripts/keys-gen.js",
"vendor:web": "rm -rf apps/web/shape-ui && cp -R packages/shape-ui apps/web/shape-ui && cp apps/os/src/cohort-surface.json apps/web/cohort-surface.json",
"deploy:web": "npm run vendor:web && cd apps/web && vercel deploy --prod --yes"
},
"devDependencies": {
"js-yaml": "^4.1.1"
}
}