-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.9 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": "vibely",
"version": "1.0.0",
"private": true,
"description": "Event-centric photo sharing platform monorepo",
"type": "module",
"scripts": {
"dev": "turbo dev",
"dev:web": "turbo dev --filter=vibely-web",
"dev:mobile": "turbo dev --filter=vibely-mobile",
"build": "turbo build",
"build:web": "turbo build --filter=vibely-web",
"build:mobile": "turbo build --filter=vibely-mobile",
"lint": "turbo lint",
"lint:fix": "turbo lint -- --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "turbo type-check",
"clean": "turbo clean && rimraf node_modules",
"clean:cache": "turbo clean && rimraf .turbo",
"test": "turbo test",
"validate": "turbo lint && turbo type-check && turbo build",
"prepare": "husky",
"status": "node scripts/status.js",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:status": "supabase status",
"supabase:gen-types": "supabase gen types typescript --linked > packages/types/supabase.ts",
"supabase:deploy-functions": "supabase functions deploy",
"supabase:deploy-cleanup": "supabase functions deploy cleanup-deleted-photos"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"prettier": "^3.1.0",
"rimraf": "^6.1.3",
"supabase": "^2.76.16",
"turbo": "^2.0.0",
"typescript": "^5.3.0"
},
"packageManager": "pnpm@8.15.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"dependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"nanoid": "^5.1.6",
"zod": "^3.22.4"
}
}