-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2 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
{
"name": "reciprocalapp",
"version": "0.3.7",
"private": true,
"prepare": "svelte-kit sync",
"scripts": {
"dev": "vite dev",
"build": "npm run updates && vite build",
"preview": "vite preview",
"test": "npm run test:end && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"sync": "svelte-kit sync",
"test:end": "playwright test",
"test:unit": "vitest",
"start": "supabase start --exclude storage-api,imgproxy,logflare,supavisor && npm run functions",
"functions": "supabase functions serve --no-verify-jwt --env-file .env &",
"stop": "supabase stop",
"reset": "supabase db reset && npm run types",
"types": "supabase gen types typescript --local > src/data/database.ts",
"deploy": "git checkout main && git merge dev && git push && git checkout dev && git push",
"outdated": "npx check-outdated --ignore-pre-releases --columns name,type,current,latest,changes",
"emu": "npm run sync && npm run build && npm run start && npm run preview",
"updates": "node scripts/updates.js",
"locale-schema": "npx ts-json-schema-generator --no-type-check --tsconfig tsconfig.json --path 'src/lib/locales/Locale.ts' --type 'LocaleText' --out src/lib/locales/LocaleText.json",
"locale-validate": "ajv validate -s src/lib/locales/LocaleText.json -d \"src/lib/locales/lang/*.json\" --all-errors --errors=text",
"locale": "npm run locale-schema && npm run locale-validate"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@playwright/test": "^1",
"@sveltejs/adapter-vercel": "^6",
"@sveltejs/kit": "^2",
"@sveltejs/vite-plugin-svelte": "^7",
"ajv-cli": "^5.0.0",
"prettier": "^3",
"prettier-plugin-sql": "^0",
"prettier-plugin-svelte": "^3",
"supabase": "^2",
"svelte": "^5",
"svelte-check": "^4",
"ts-json-schema-generator": "^2.9.0",
"tslib": "^2",
"typescript": "^5",
"vite": "^8",
"vitest": "^4"
},
"type": "module",
"dependencies": {
"@supabase/ssr": "^0",
"@supabase/supabase-js": "^2",
"marked": "^17.0.4"
}
}