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
23 lines (23 loc) · 1.13 KB
/
package.json
File metadata and controls
23 lines (23 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "dewordle",
"version": "0.1.0",
"private": true,
"license": "MIT",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"install:all": "npm ci --include=dev --prefix backend && npm ci --include=dev --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 --prefix frontend && npm run lint --prefix frontend && npm run typecheck --prefix frontend && npm run build --prefix frontend",
"verify:backend": "npm ci --include=dev --prefix backend && npm run lint --prefix backend && npm run typecheck --prefix backend && npm run build --prefix backend",
"soroban:check": "cargo check --manifest-path soroban/Cargo.toml --workspace",
"soroban:fmt": "cargo fmt --manifest-path soroban/Cargo.toml --all"
}
}