-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.25 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.25 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
{
"name": "hn_remix",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc --noEmit && echo \"tsc good\"",
"dev": "vinxi dev",
"build": "node ./scripts/stamp-sw-version.mjs && vinxi build",
"test": "vitest run",
"start": "vinxi start",
"format": "prettier --write \"src/**\"",
"lint:fix": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint --fix .",
"nice": "pnpm lint:fix && pnpm format",
"knip": "pnpm dlx knip",
"knip:fix": "pnpm dlx knip --fix"
},
"dependencies": {
"@formkit/auto-animate": "^0.9.0",
"@solid-primitives/storage": "^4.3.3",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.0",
"@solidjs/start": "^1.1.0",
"clsx": "^2.1.0",
"firebase": "^10.8.0",
"html-entities": "^2.5.2",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"munsell": "^1.1.5",
"sanitize-html": "^2.12.1",
"solid-js": "^1.9.5",
"tailwind-merge": "^2.2.1",
"vinxi": "^0.5.7",
"zod": "^4.0.14"
},
"devDependencies": {
"@dword-design/eslint-plugin-import-alias": "^5.1.1",
"@solidjs/testing-library": "^0.8.10",
"@tailwindcss/vite": "^4.0.7",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.14.202",
"@types/lodash-es": "^4.17.12",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-boundaries": "^5.0.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-solid": "^0.14.5",
"happy-dom": "^20.3.7",
"jsdom": "^27.4.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.0.7",
"typescript": "^5.1.6",
"vite-plugin-pwa": "^1.0.3",
"vite-plugin-solid": "^2.11.10",
"vitest": "^4.0.18",
"workbox-build": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-precaching": "^7.3.0"
},
"engines": {
"node": ">=22"
}
}