-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.37 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.37 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
{
"name": "linked-data-explorer-monorepo",
"version": "0.2.0",
"private": true,
"description": "Monorepo for Linked Data Explorer - RONL DMN Orchestration Platform",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=@linked-data-explorer/frontend",
"dev:backend": "npm run dev --workspace=@linked-data-explorer/backend",
"dev:full": "concurrently \"npm run dev\" \"npm run dev:backend\"",
"build": "npm run build --workspace=@linked-data-explorer/frontend",
"preview": "npm run preview --workspace=@linked-data-explorer/frontend",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"check-format": "npm run check-format --workspaces --if-present",
"postinstall": "husky install || true"
},
"devDependencies": {
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7"
},
"lint-staged": {
"packages/frontend/**/*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write",
"eslint --config packages/frontend/eslint.config.js --fix"
]
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sgort/linked-data-explorer.git"
},
"author": "Regels Overheid",
"license": "EUPL-1.2"
}