-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·62 lines (62 loc) · 2.17 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
{
"name": "kahitsan-web",
"version": "0.1.0",
"type": "module",
"scripts": {
"news:build": "node scripts/build-news.mjs",
"predev": "npm run news:build",
"dev": "vinxi dev --port 4200",
"prebuild": "npm run news:build",
"build": "vinxi build",
"postbuild": "npm run worker:build",
"worker:build": "node functions/build-worker.mjs",
"preview": "vinxi start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run test:unit && npm run build && npm run test:release && npm run test:e2e",
"test:unit": "node --test scripts/*.test.mjs functions/contact-feedback.test.mjs",
"test:release": "node --test functions/release.test.mjs",
"test:e2e": "playwright test",
"serve:test": "serve .output/public --listen 3458 --no-clipboard",
"audit:lighthouse": "npm run build && node scripts/lighthouse-audit.mjs",
"audit:lighthouse:mobile": "npm run build && node scripts/lighthouse-audit.mjs --form-factor=mobile",
"audit:lighthouse:desktop": "npm run build && node scripts/lighthouse-audit.mjs --form-factor=desktop",
"test:ui": "npm run build && playwright test --ui"
},
"dependencies": {
"@kahitsan/ksui": "^0.32.0",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.16.1",
"@solidjs/start": "^1.3.2",
"gray-matter": "^4.0.3",
"lucide-solid": "^0.544.0",
"marked": "^18.0.11",
"sanitize-html": "^2.17.7",
"solid-js": "^1.9.12",
"solid-transition-group": "^0.3.0",
"vinxi": "^0.5.11",
"vite-imagetools": "7.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.49.0",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^26.4.1",
"@types/sanitize-html": "^2.16.1",
"axe-core": "^4.13.0",
"esbuild": "0.25.12",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-solid": "^0.14.5",
"lighthouse": "13.4.1",
"prettier": "^3.8.1",
"serve": "14.2.6",
"solid-devtools": "^0.34.5",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
}
}