-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 2.41 KB
/
package.json
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
{
"name": "@remix-gospel-stack/root",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "tsx packages/database/src/seed.ts"
},
"scripts": {
"build": "turbo run build",
"db:migrate:deploy": "turbo run db:migrate:deploy",
"db:migrate:dev": "pnpm run --filter @remix-gospel-stack/database db:migrate:dev",
"db:push": "turbo run db:push",
"db:seed": "turbo run db:seed --no-cache",
"db:migrate:force": "turbo run db:migrate:force --no-cache",
"dev": "turbo run dev --parallel",
"storybook": "turbo run storybook",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"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:remix-app": "docker build -t remix-gospel-stack-remix-app -f ./apps/remix-app/Dockerfile .",
"docker:run:remix-app": "docker run -it --init --rm -p 3000:3000 --env-file .env.docker --env DATABASE_URL='postgresql://postgres:postgres@db:5432/postgres' --network=app_network remix-gospel-stack-remix-app",
"test": "turbo run test",
"test:dev": "turbo run test:dev",
"start-remix-production": "pnpm run --filter @remix-gospel-stack/remix-app start",
"start": "turbo run start",
"clean": "turbo run clean",
"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": "pnpm run db:migrate:dev && turbo run db:migrate:force db:seed build",
"validate": "turbo run lint typecheck test"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@remix-run/dev": "2.12.1",
"@turbo/gen": "^2.1.2",
"@types/glob": "8.1.0",
"glob": "^11.0.0",
"json5": "^2.2.3",
"magicast": "^0.3.5",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"replace-in-file": "^8.2.0",
"turbo": "^2.1.2",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@swc/core": "^1.6.7"
}
}
}