-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.14 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "hollow-knight-damage-tracker",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18.18.0",
"pnpm": ">=8.7.0"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "run-p lint:js lint:css",
"lint:js": "eslint . --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:css": "stylelint \"src/**/*.{css,scss}\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run --coverage",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"check": "run-s lint test",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm format:check && pnpm lint && pnpm test:unit -- --reporter=dot",
"pre-push": "pnpm lint"
},
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0",
"workbox-window": "^7.3.0"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@playwright/test": "^1.56.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^24.7.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"@vitejs/plugin-react-swc": "^4.1.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.4.23",
"eslint-plugin-testing-library": "^7.13.1",
"jsdom": "^27.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.9.0",
"stylelint": "^16.25.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^39.0.1",
"typescript": "~5.9.3",
"vite": "^7.1.11",
"vite-plugin-pwa": "^1.0.3",
"vitest": "^3.2.4"
}
}