forked from kike-alt/DeWordle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.52 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
{
"name": "dewordle",
"version": "0.1.0",
"private": true,
"license": "MIT",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"install:all": "npm ci --include=dev --workspaces=false --prefix backend && npm ci --include=dev --workspaces=false --prefix frontend",
"lint": "npm run lint --prefix backend && npm run lint --prefix frontend",
"typecheck": "npm run typecheck --prefix backend && npm run typecheck --prefix frontend",
"test": "npm run test --prefix backend",
"test:e2e": "npm run test:e2e --prefix backend",
"build": "npm run build --prefix backend && npm run build --prefix frontend",
"format": "npm run format --prefix backend",
"verify:frontend": "npm ci --include=dev --workspaces=false --prefix frontend && npm run lint --prefix frontend && npm run typecheck --prefix frontend && npm run build --prefix frontend && npm test --prefix frontend",
"verify:backend": "npm ci --include=dev --workspaces=false --prefix backend && npm run build --prefix backend && npm run typecheck --prefix backend && npm run lint:ci --prefix backend && npm run test:ci --prefix backend",
"soroban:check": "cargo check --manifest-path soroban/Cargo.toml --workspace",
"soroban:fmt": "cargo fmt --manifest-path soroban/Cargo.toml --all",
"bootstrap": "node scripts/contributor-bootstrap.js",
"bootstrap:json": "node scripts/contributor-bootstrap.js --json",
"fixture:sandbox": "node scripts/fixture-sandbox.js",
"pr:checklist": "node scripts/pr-checklist-commenter.js"
}
}