-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.61 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.61 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
{
"name": "ontology-based-nl-search",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "turbo run build",
"dev": "node scripts/clean-ports.mjs && turbo run dev --parallel",
"dev:api": "node scripts/clean-ports.mjs 3003 && pnpm run build && pnpm --filter @ontology-search/api dev",
"dev:web": "node scripts/clean-ports.mjs 5174 && turbo run dev --filter=@ontology-search/web",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"check-types": "turbo run check-types",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "turbo run check-types test && pnpm run lint && pnpm run format:check",
"clean": "turbo run clean",
"clean:ports": "node scripts/clean-ports.mjs",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,mts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,html,css}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@ontology-search/eslint-config": "workspace:*",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"turbo": "^2.3.0",
"typescript-eslint": "^8.59.2"
}
}