-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.28 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
{
"name": "crammr",
"version": "0.2.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "run-s lint:ts lint:css lint:actions lint:spelling",
"lint:ts": "oxlint",
"lint:ts:fix": "oxlint --fix",
"lint:css": "stylelint \"src/**/*.css\" \"src/**/*.scss\"",
"lint:css:fix": "stylelint --fix \"src/**/*.css\" \"src/**/*.scss\"",
"lint:actions": "github-actionlint .github/workflows/*.yml",
"lint:spelling": "typos",
"lint:spelling:fix": "typos --write-changes",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"clean": "rm -rf dist",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "oxfmt",
"format:check": "oxfmt --check",
"format:staged": "lint-staged",
"db:apply": "bun scripts/apply-migrations.ts",
"db:push": "supabase db push",
"prepare": "husky",
"system-check": "run-s clean format:check lint typecheck test build"
},
"dependencies": {
"@fontsource-variable/space-grotesk": "5.2.10",
"@supabase/supabase-js": "2.106.2",
"highlight.js": "11.11.1",
"lucide-react": "0.344.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "10.1.0",
"rehype-highlight": "7.0.2",
"wouter": "3.10.0",
"zustand": "5.0.13"
},
"devDependencies": {
"@ocular-d/typos-bin": "1.50.2",
"@types/react": "18.3.29",
"@types/react-dom": "18.3.7",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@vitejs/plugin-react": "4.7.0",
"@vitest/coverage-v8": "2.1.9",
"github-actionlint": "1.7.12",
"husky": "9.1.7",
"lint-staged": "17.3.0",
"npm-run-all": "4.1.5",
"oxfmt": "0.62.0",
"oxlint": "1.77.0",
"oxlint-tsgolint": "7.0.2001",
"playwright": "1.60.0",
"stylelint": "17.15.0",
"stylelint-config-standard": "40.0.0",
"stylelint-config-standard-scss": "17.0.0",
"typescript": "5.9.3",
"vite": "5.4.21",
"vitest": "2.1.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"oxlint --fix",
"oxfmt"
],
"*.{css,scss}": [
"stylelint --fix",
"oxfmt"
],
"*.{json,jsonc,json5,md,mdx,yml,yaml,toml,html}": "oxfmt"
},
"trustedDependencies": [
"@ocular-d/typos-bin"
]
}