-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.25 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 3.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
72
73
74
{
"name": "slugswap-workspace",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dashboard:dev",
"build": "npm run dashboard:build",
"start": "npm run mobile:start",
"dashboard:dev": "dotenv -e .env -- npm run dev -w @slugswap/dashboard --",
"dashboard:build": "npm run build -w @slugswap/dashboard",
"dashboard:start": "npm run start -w @slugswap/dashboard",
"dashboard:deploy": "vercel",
"dashboard:deploy:prod": "vercel --prod",
"dashboard:typecheck": "npm run typecheck -w @slugswap/dashboard",
"mobile:dev": "npm run mobile:start",
"mobile:start": "dotenv -e .env -- npm run start -w @slugswap/mobile --",
"mobile:ios": "dotenv -e .env -- npm run ios -w @slugswap/mobile --",
"mobile:android": "dotenv -e .env -- npm run android -w @slugswap/mobile --",
"mobile:web": "dotenv -e .env -- npm run web -w @slugswap/mobile --",
"mobile:web:build": "dotenv -e .env -- npm run web:build -w @slugswap/mobile --",
"mobile:web:preview": "npm run web:preview -w @slugswap/mobile --",
"mobile:web:deploy": "npm run mobile:web:build && vercel deploy apps/mobile/dist",
"mobile:web:deploy:prod": "npm run mobile:web:build && vercel deploy --prod apps/mobile/dist",
"mobile:typecheck": "npm run typecheck -w @slugswap/mobile",
"typecheck": "npm run root:typecheck && npm run dashboard:typecheck && npm run mobile:typecheck",
"root:typecheck": "tsc --noEmit -p tsconfig.json",
"story:generate": "bash scripts/instagram-stories/export-ig-stories.sh",
"story:generate:svg": "npx dotenv-cli -e .env -- npx tsx scripts/instagram-stories/write-instagram-story-data.ts && npx tsx scripts/instagram-stories/generate-instagram-story.ts",
"mobile:eas:init": "cd apps/mobile && eas init",
"mobile:eas:build:ios": "cd apps/mobile && eas build --platform ios --profile production",
"mobile:eas:submit:ios": "cd apps/mobile && eas submit --platform ios --profile production --latest",
"mobile:eas:testflight": "cd apps/mobile && eas build -p ios --profile production --submit",
"mobile:eas:update": "cd apps/mobile && eas update --channel production",
"mobile:eas:update:preview": "cd apps/mobile && eas update --channel preview",
"ci:check": "npm run typecheck",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"mobile:ios:release": "dotenv -e .env -- npm run ios:release -w @slugswap/mobile --",
"android": "expo run:android",
"ios": "expo run:ios"
},
"dependencies": {
"@expo/cli": "^54.0.23",
"@neondatabase/serverless": "^1.0.2",
"@supabase/supabase-js": "^2.95.3",
"better-auth": "^1.4.18",
"drizzle-orm": "^0.45.1",
"expo": "~54.0.33",
"next": "^15.5.6",
"playwright": "^1.58.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"vercel": "^50.38.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^24.3.0",
"@types/react": "~19.1.10",
"@vercel/node": "^5.6.0",
"cors": "^2.8.6",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.9",
"express": "^5.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}