-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.65 KB
/
package.json
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
{
"name": "living-dictionaries",
"type": "module",
"scripts": {
"dev": "pnpm --filter=site dev",
"prod": "pnpm --filter=site prod",
"mixed": "pnpm --filter=site mixed",
"dev:open": "pnpm --filter=site dev --open",
"build": "pnpm --filter=site build",
"preview": "pnpm --filter=site preview",
"postinstall": "simple-git-hooks",
"check": "pnpm --filter=site check",
"test": "vitest",
"test:db": "pnpm --filter=site test:db",
"test:db:ci": "start-server-and-test dev http://localhost:3041/kitbook test:db",
"test:site": "pnpm --filter=site test",
"test:all": "pnpm --recursive --stream test -- --run",
"test:e2e": "pnpm --filter=site test:e2e",
"lint": "eslint . --cache --quiet",
"lint:fix": "eslint . --cache --fix",
"lint:inspect": "npx @eslint/config-inspector",
"lint:inspect-future": "eslint --inspect-config",
"reset-db": "pnpm --filter=site reset-db",
"generate-types": "supabase gen types typescript --local --schema public > packages/types/supabase/generated.types.ts",
"check-packages": "pnpm update --interactive --recursive --latest"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@typescript-eslint/eslint-plugin": "8.3.0",
"eslint": "^9.9.1",
"eslint-plugin-svelte": "^2.43.0",
"eslint-plugin-svelte-stylistic": "^0.0.4",
"lint-staged": "^15.2.9",
"simple-git-hooks": "^2.11.1",
"start-server-and-test": "^2.0.5",
"supabase": "^1.145.4",
"svelte": "^4.2.12",
"typescript": "~5.1.6",
"vitest": "^2.1.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}