forked from biohackerellie/OpenFacilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.39 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
{
"name": "LPS-Facilities",
"version": "1.0.0",
"private": true,
"workspaces": [
"front-end",
"tooling/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:libs": "turbo run build:libs",
"dev": "turbo run dev",
"test": "pnpm -F front-end test",
"clean": "git clean -xdf node_modules",
"db:gen": "pnpm -F db gen",
"clean:outs": "turbo run clean:outs",
"format": "turbo format --continue -- --cache --cache-location .turbo/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location .turbo/.cache/.prettiercache",
"lint": "turbo lint --continue -- --quiet --cache --cache-location .turbo/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --quiet --cache --cache-location .turbo/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"lint:ws:fix": "pnpm dlx sherif@latest --fix",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo typecheck",
"ui-add": "pnpm -F front-end ui-add"
},
"devDependencies": {
"@local/prettier-config": "workspace:*",
"@total-typescript/ts-reset": "^0.6.1",
"@turbo/gen": "^2.1.3",
"eslint-plugin-react-compiler": "^0.0.0-experimental-d0e920e-20240815",
"prettier": "^3.3.3",
"turbo": "^2.1.3",
"typescript": "^5.6.3"
},
"prettier": "@local/prettier-config",
"packageManager": "pnpm@9.12.2"
}