-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.3 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@boostv/process-optimizer-frontend-monorepo",
"version": "1.0.0",
"author": "Jakob Langdal <jakob.langdal@alexandra.dk>",
"dependencies": {
"@changesets/cli": "^2.31.0"
},
"devDependencies": {
"@boostv/eslint-config": "2.1.0",
"@mui/material": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"ajv": "^8.20.0",
"eslint": "^10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-testing-library": "7.16.2",
"husky": "^9.1.7",
"lint-staged": "17.0.5",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"engineStrict": true,
"overrides": {
"@types/node": "25.9.1"
},
"engines": {
"npm": ">=8.15.0",
"yarn": ">100.0.0"
},
"license": "BSD-3-Clause",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.{js,ts,tsx}": "eslint --fix"
},
"main": "index.js",
"private": true,
"repository": "https://github.com/BoostV/process-optimizer-frontend.git",
"scripts": {
"bootstrap": "npm run build --workspace packages --if-present",
"build": "npm run build -ws --if-present",
"clean": "npx -y rimraf node_modules **/node_modules/",
"dev:app": "npm run dev --workspace @boostv/process-optimizer-frontend-sample-app",
"dev:core": "npm run dev --workspace @boostv/process-optimizer-frontend-core",
"dev:ui": "npm run dev --workspace @boostv/process-optimizer-frontend-ui",
"formatAll": "prettier --write .",
"inspect": "playwright test --config inspection/playwright.config.ts",
"inspect:setup": "playwright install chromium",
"inspect:docker": "bash inspection/run-in-docker.sh",
"lint": "eslint",
"openapi": "npm run openapi --workspace @boostv/process-optimizer-frontend-api",
"prepare": "husky",
"prettier": "prettier --check .",
"release": "npm run build && changeset publish",
"start": "npm run dev --workspace @boostv/process-optimizer-frontend-sample-app",
"test": "npm run test -ws --if-present -- --run",
"update-deps": "npx npm-check-updates -ws --root -i"
},
"workspaces": [
"scaffold",
"packages/*",
"sample-app",
"inspection"
]
}