-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "pocketdragon",
"version": "0.0.0-development",
"description": "The companion app for the boardgame Pocket Dragon",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"setupPublishBranch": "mkdir -p dist && git worktree add dist master",
"publishApp": "npm run build && cd dist && git add --all && (git diff --cached --quiet || git commit -m \"Publishing to gh-pages\") && git push --force-with-lease origin master && cd ..",
"semantic-release": "semantic-release"
},
"keywords": [
"pocket-dragon",
"board-game",
"companion-app"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.59.1",
"@semantic-release/github": "^11.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.1.4",
"semantic-release": "^24.0.0",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.15"
},
"dependencies": {
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1"
}
}