-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.83 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
{
"name": "helperai",
"version": "1.0.0",
"description": "Help customer supporters with drafted answers and actions.",
"packageManager": "npm@10.8.2",
"private": true,
"scripts": {
"postinstall": "(cd apps/expo && npm install && cd ../tauri && npm install)",
"build": "turbo run build",
"build:preview": "(cd apps/nextjs && npm run build:preview)",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"daemon:clean": "turbo daemon clean || true",
"db:check": "(cd apps/nextjs && npm run db:check)",
"db:generate": "(cd apps/nextjs && npm run db:generate)",
"db:migrate": "(cd apps/nextjs && npm run db:migrate)",
"db:reset": "(cd apps/nextjs && npm run db:reset)",
"dev": "lsof -ti:3010 | xargs kill -9 || true && npm run daemon:clean && turbo run dev --continue",
"dev:email": "npm -C apps/nextjs run dev:email",
"dev:next": "lsof -ti:3010 | xargs kill -9 || true && npm run daemon:clean && turbo run dev --continue -F @helperai/nextjs...",
"dev:sdk": "npm -C apps/nextjs run dev:sdk",
"dev:expo": "(cd apps/expo && ./verify-env.sh && npm run start)",
"dev:tauri": "(cd apps/tauri && npm run dev)",
"eval:dev": "(cd apps/nextjs && npm run eval:dev)",
"evals": "(cd apps/nextjs && npm run evals)",
"expo:trpc:generate": "xtrpc && awk 'BEGIN {print \"// AUTOGENERATED. DO NOT EDIT.\"} {print}' ./apps/expo/src/types/api.ts > temp && mv temp ./apps/expo/src/types/api.ts && prettier --write ./apps/expo/src/types/api.ts",
"expo:trpc:watch": "npx nodemon --watch apps/nextjs/src/trpc --ext ts,tsx --exec \"npm run expo:trpc:generate\"",
"expo:build:ios": "(cd apps/expo && npm run build:ios)",
"expo:build:android": "(cd apps/expo && npm run build:android)",
"expo:update:production": "(cd apps/expo && npm run update:production)",
"tauri:build": "(cd apps/tauri && npm run build)",
"tauri:upload-bundles": "(cd apps/tauri && npm run upload-bundles)",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"repl": "(cd apps/nextjs && npm run repl)",
"repl:preview": "(cd apps/nextjs && npm run repl:preview)",
"repl:prod": "(cd apps/nextjs && npm run repl:prod)",
"test": "turbo run test --concurrency=1",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@antiwork/shortest": "^0.4.5",
"@figma/code-connect": "^1.0.5",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"inngest-cli": "^1.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "^2.1.1",
"typescript": "^5.5.4"
},
"workspaces": [
"apps/nextjs",
"tooling/*",
"packages/*"
],
"dependencies": {
"@algora/xtrpc": "^0.1.1",
"date-fns-tz": "^3.2.0"
}
}