-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.51 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.51 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
{
"name": "microhams",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "node scripts/test-e2e.js",
"test:e2e:ui": "node scripts/test-e2e.js --ui",
"test:e2e:update": "node scripts/test-e2e.js --update-snapshots",
"lint": "eslint . --ext .js,.ts,.astro",
"lint:fix": "eslint . --ext .js,.ts,.astro --fix",
"type-check": "astro check && tsc --noEmit",
"validate": "npx tsx scripts/ai-validate.ts",
"verify": "node scripts/verify-versions.js",
"ci": "npm run verify && npm run lint && npm run type-check && npm run test:run && npm run build",
"pre-push": "npx tsx scripts/pre-push.ts",
"pre-push:fast": "npx tsx scripts/pre-push.ts --fast",
"pre-push:fix": "npx tsx scripts/pre-push.ts --fix",
"docker:build": "docker-compose -f .docker/docker-compose.yml build",
"docker:build:no-cache": "docker-compose -f .docker/docker-compose.yml build --no-cache",
"docker:ci": "docker-compose -f .docker/docker-compose.yml run --rm ci",
"docker:unit": "docker-compose -f .docker/docker-compose.yml run --rm unit",
"docker:e2e": "docker-compose -f .docker/docker-compose.yml run --rm e2e",
"docker:dev": "docker-compose -f .docker/docker-compose.yml up dev",
"prepare": "husky"
},
"dependencies": {
"@js-temporal/polyfill": "^0.5.1",
"@types/leaflet": "^1.9.21",
"astro": "^6.3.1",
"leaflet": "^1.9.4",
"rehype-mathjax": "^7.1.0",
"remark-math": "^6.0.0",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^25.6.2",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.13.0",
"@vitest/ui": "^4.1.5",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^17.6.0",
"husky": "^9.1.6",
"jsdom": "^28.1.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.3",
"vitest": "^4.0.17"
},
"optionalDependencies": {
"@playwright/test": "^1.59.1",
"playwright-core": "^1.56.1"
},
"lint-staged": {
"*.{js,ts,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md}": [
"prettier --write"
]
}
}