-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.75 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
{
"name": "ai-med-docs",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"services/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "pnpm run test:unit && pnpm run test:integration",
"test:unit": "node --test tests/unit/config.test.js",
"test:integration": "node --test tests/integration/health.test.js",
"lint": "pnpm exec eslint . --ext .ts,.tsx,.js,.jsx --ignore-pattern dist --ignore-pattern build",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "pnpm exec tsc --noEmit",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "husky install",
"db:migrate": "pnpm --filter @scribemed/database migrate",
"db:migrate:info": "pnpm --filter @scribemed/database migrate:info",
"db:migrate:undo": "pnpm --filter @scribemed/database migrate:undo",
"db:seed:dev": "pnpm --filter @scribemed/database seed:dev"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@scribemed/tooling": "workspace:*",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"turbo": "^1.10.0",
"typescript": "^5.2.0",
"@types/node": "^20.11.30"
},
"packageManager": "pnpm@8.7.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}