-
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) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 860 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": "critterwave",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Browser critter wave RPG",
"scripts": {
"build": "tsc",
"build:html": "node scripts/build-html.mjs",
"build:site": "npm run build && npm run build:html && node scripts/build-site.mjs",
"predev": "npm run build && npm run build:html",
"generate-foes": "node scripts/generate-foes.mjs",
"generate:og": "node scripts/generate-og-image.mjs",
"dev": "npx --yes serve . -p 3000",
"test": "vitest run",
"test:watch": "vitest",
"pretest:e2e": "playwright install chromium",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.52.0",
"happy-dom": "^20.10.1",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}