-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.37 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.37 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": "@react-router-gospel-stack/root",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"db:generate": "turbo run db:generate --",
"db:seed": "turbo run db:seed --no-cache",
"db:migrate:new": "turbo run db:migrate:new --",
"db:migrate:apply": "turbo run db:migrate:apply --",
"db:migrate:apply:production": "turbo run db:migrate:apply:production --no-cache",
"dev": "turbo run dev --parallel",
"storybook": "turbo run storybook",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"docker:db": "docker compose -f docker-compose.yml up -d",
"docker:build": "turbo run docker:build",
"docker:build:webapp": "docker build -t react-router-gospel-stack-webapp -f ./apps/webapp/other/Dockerfile .",
"docker:run:webapp": "docker run -it --init --rm -p 3000:3000 --env-file .env.docker --env DATABASE_URL='postgresql://postgres:postgres@db:5432/postgres' --network=app_network react-router-gospel-stack-webapp",
"test": "turbo run test",
"test:dev": "turbo run test:dev",
"start-webapp": "pnpm run --filter @react-router-gospel-stack/webapp start",
"start": "turbo run start",
"clean": "turbo run clean",
"nuke": "turbo run nuke",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"typecheck": "turbo run typecheck",
"test:e2e:dev": "turbo run test:e2e:dev",
"test:e2e:ci": "turbo run test:e2e:ci",
"setup": "node scripts/setup.mjs",
"validate": "turbo run lint typecheck test"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@npmcli/package-json": "7.0.4",
"@turbo/gen": "^2.6.0",
"@types/npmcli__package-json": "4.0.4",
"chalk": "catalog:",
"glob": "catalog:",
"inquirer": "^12.4.0",
"json5": "^2.2.3",
"magicast": "^0.5.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "catalog:tailwindcss",
"replace-in-file": "^8.3.0",
"turbo": "^2.6.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.28.0",
"pnpm": {
"overrides": {
"@libsql/client": "0.17.0"
},
"onlyBuiltDependencies": []
}
}