-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.22 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
{
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo run build",
"build:web": "turbo run build --filter=@resupaflare/web && ln -sfn apps/web/functions functions",
"deploy:workers": "turbo deploy --filter={./workers/*}",
"deploy:workers:changed": "turbo deploy --filter={./workers/*}...[HEAD^1]",
"dev": "turbo run dev",
"gen-types": "turbo run gen-types",
"gen-migration": "pnpm --filter @resupaflare/db run gen-migration",
"lint": "pnpm install --frozen-lockfile && turbo run lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"restart": "turbo run stop && turbo run start"
},
"devDependencies": {
"@resupaflare/eslint-config-custom": "workspace:*",
"@sentry/cli": "^2.19.4",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@turbo/gen": "^1.9.7",
"eslint": "^8.38.0",
"prettier": "^2.5.1",
"turbo": "latest",
"typescript": "^5.1.6",
"vitest": "^0.33.0",
"wrangler": "^3.3.0"
},
"packageManager": "[email protected]",
"name": "resupaflare",
"pnpm": {
"patchedDependencies": {
"@remix-run/[email protected]": "patches/@[email protected]"
}
}
}