-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.44 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.44 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
25
26
27
28
{
"name": "react-on-django-com",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"sync:docs": "node scripts/sync-docs.mjs",
"sync:docs:subset": "node scripts/sync-docs.mjs --subset",
"prepare:docs": "node scripts/prepare-docs.mjs --target docusaurus",
"prepare:docs:subset": "node scripts/prepare-docs.mjs --target docusaurus --subset",
"audit:docs": "node scripts/audit-docs.mjs",
"test:docs-layout": "node --test scripts/docs-layout.test.mjs",
"test:prepare-docs": "node --test scripts/prepare-docs.test.mjs",
"test:sync-docs": "node --test scripts/sync-docs.test.mjs",
"test:docs": "node --test scripts/docs-layout.test.mjs scripts/prepare-docs.test.mjs scripts/sync-docs.test.mjs",
"check:docs": "npm run audit:docs && npm run test:docs",
"prepare": "npm run sync:docs && npm run prepare:docs",
"prepare:subset": "npm run sync:docs:subset && npm run prepare:docs:subset",
"install:site": "npm --prefix prototypes/docusaurus ci",
"predev": "npm run install:site",
"prebuild": "npm run install:site",
"dev": "npm --prefix prototypes/docusaurus run start",
"build": "npm --prefix prototypes/docusaurus run build",
"build:full": "npm run prepare && npm run build",
"deploy": "npx wrangler pages deploy prototypes/docusaurus/build --project-name ${CLOUDFLARE_PAGES_PROJECT:-react-on-django-com}",
"cloudflare:deploy": "npm run build:full && npm run deploy"
}
}