-
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) · 998 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 998 Bytes
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": "sayit",
"version": "0.1.0",
"private": true,
"description": "Speak more fluently — web app for working professionals to practice spoken English.",
"scripts": {
"dev": "pnpm --filter web dev",
"build": "pnpm --filter web build",
"start": "pnpm --filter web start",
"typecheck": "pnpm --filter web typecheck && pnpm --filter @sayit/shared typecheck",
"lint": "pnpm --filter web lint",
"test": "node --test tests/privacy-scan.test.js",
"test:e2e": "pnpm exec playwright test",
"postinstall": "node scripts/postinstall.js",
"install-hooks": "node scripts/install-hooks.js",
"privacy-scan": "node scripts/privacy-scan.js --all",
"db:reset": "rm -f apps/web/data/sayit.db && node apps/web/scripts/migrate.js && node apps/web/scripts/seed.js"
},
"devDependencies": {
"@playwright/test": "1.55.0",
"typescript": "5.6.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@11.17.0"
}