-
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) · 735 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 735 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
{
"name": "chronicles-of-the-realm",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && tsc -p tsconfig.node.json --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint js",
"test": "playwright test",
"test:unit": "vitest run",
"generate-icons": "node scripts/generate-icons.js"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@types/node": "^25.4.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"sharp": "^0.34.5",
"typescript": "^5.7.0",
"vite": "^6.2.0",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18"
}
}