-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.7 KB
/
package.json
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
{
"private": "true",
"scripts": {
"--- update": "// Run after project dependencies are changed",
"update": "rush update",
"--- web": "// Run these command in separate terminals",
"web:watch": "rush build:watch --to-except ricklove_me",
"web:start": "cd ./projects/web/ricklove_me && npm run dev",
"server:prebuild": "rush build --to api-build",
"server:build": "cd ./projects/web/api/_build && npm run cli",
"server:deploy": "cd ./projects/web/api/_serverless && npm run deploy",
"--- art": "// Art rendering can be expensive, so run manually",
"art:render": "cd ./projects/art/renderer && npm run cli",
"--- lessons": "// Lesson server is needed for editing lessons (in addition to web)",
"lessons:serve": "cd ./projects/code-training/lesson-editor-local-server && npm run serve",
"lessons:edit": "start http://localhost:3042/lessons/editor",
"--- generation TEMP Scripts": "",
"gen:project": "npm --prefix tools/rush-packages run cli -- --d projects/bible/bible-types --p @ricklove/bible-types --t lib",
"gen:site": "cd projects/bible && npm create vite@latest bible-site -- --template react-ts",
"--- projects": "",
"jointhejourney:extract": "cd projects/church/join-the-journey/exporter && npm run cli",
"jointhejourney:dev": "cd projects/church/join-the-journey/join-the-journey-site && npm run dev",
"jointhejourney:deploy": "cd projects/church/join-the-journey/join-the-journey-site && npm run deploy",
"bible:dev": "cd projects/bible/bible-site && npm run dev",
"bible:deploy": "cd projects/bible/bible-site && npm run deploy",
"---": ""
}
}