-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.65 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "devtools",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"test:watch": "vitest",
"pretest:e2e": "lsof -ti:4321 | xargs kill -9 2>/dev/null || true",
"test:e2e": "playwright test --project=e2e",
"pretest:vrt": "lsof -ti:4321 | xargs kill -9 2>/dev/null || true",
"test:vrt": "playwright test --project=visual-regression",
"pretest:e2e:dev": "lsof -ti:4321,4322 | xargs kill -9 2>/dev/null || true",
"test:e2e:dev": "playwright test --project=hydration-dev",
"pretest:e2e:ui": "lsof -ti:4321 | xargs kill -9 2>/dev/null || true",
"test:e2e:ui": "playwright test --ui",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint ."
},
"dependencies": {
"@astrojs/react": "5.0.3",
"@astrojs/sitemap": "^3.7.2",
"@cfworker/json-schema": "^4.1.1",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/noto-sans-jp": "^5.2.9",
"@tailwindcss/vite": "^4.2.2",
"@types/jszip": "^3.4.0",
"@types/papaparse": "5.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"asn1js": "3.0.10",
"astro": "6.1.5",
"bwip-js": "^4.9.0",
"encoding-japanese": "2.2.0",
"fast-xml-parser": "5.5.11",
"fflate": "0.8.3",
"jmespath": "0.16.0",
"jsbarcode": "^3.12.3",
"jsonc-parser": "3.3.1",
"jsqr": "1.4.0",
"jszip": "^3.10.1",
"marked": "18.0.5",
"node-sql-parser": "5.4.0",
"papaparse": "5.5.3",
"pkijs": "3.4.0",
"qrcode-generator": "^2.0.4",
"react": "19.2.5",
"react-dom": "19.2.5",
"recheck": "4.5.0",
"regexp-tree": "0.1.27",
"smol-toml": "^1.3.4",
"sql-formatter": "15.8.0",
"tailwindcss": "^4.2.2",
"ulidx": "^2.4.1",
"uuid": "13.0.0",
"yaml": "^2.8.0"
},
"devDependencies": {
"@astrojs/check": "0.9.8",
"@playwright/test": "1.59.1",
"@testing-library/react": "^16.3.0",
"@types/encoding-japanese": "2.2.1",
"@types/jmespath": "0.15.2",
"@types/jsbarcode": "^3.11.4",
"@types/uuid": "10.0.0",
"@typescript-eslint/parser": "8.61.0",
"@vitest/coverage-v8": "4.1.4",
"eslint": "9.39.4",
"eslint-plugin-react": "7.37.5",
"img-comparison-slider": "8.0.7",
"jsdom": "^26.1.0",
"lint-staged": "16.4.0",
"prettier": "3.8.2",
"prettier-plugin-astro": "0.14.1",
"typescript": "5.9.3",
"vitest": "4.1.4"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,css,md,json,astro}": "prettier --write"
},
"overrides": {
"vite": "7.3.2"
}
}