-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "@epic-stack-monorepo/root",
"private": true,
"sideEffects": false,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"db:migrate:force": "turbo run db:migrate:force --no-cache",
"db:seed": "turbo run db:seed --no-cache",
"lint": "turbo run lint",
"test": "turbo run test",
"test:e2e:install": "turbo run test:e2e:install",
"test:e2e:run": "turbo run test:e2e:run",
"test:e2e:ci": "turbo run test:e2e:ci",
"docker:build:remix-app": "docker build -t epic-stack-monorepo -f ./apps/epic-app/other/Dockerfile .",
"start-remix-production": "pnpm run --filter @epic-stack-monorepo/epic-app start",
"start": "turbo run start",
"clean": "turbo run clean",
"setup": "turbo run setup",
"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",
"validate": "turbo run lint typecheck test"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"prettier": "^3.0.3",
"prettier-plugin-sql": "^0.15.1",
"prettier-plugin-tailwindcss": "^0.5.4",
"turbo": "^1.10.14",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.7.4",
"engines": {
"node": "18"
},
"pnpm": {
"patchedDependencies": {
"remix-utils@6.6.0": "patches/remix-utils@6.6.0.patch"
}
}
}