-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 2.02 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@boostv/process-optimizer-frontend-monorepo",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/BoostV/process-optimizer-frontend.git",
"author": "Jakob Langdal <[email protected]>",
"license": "BSD-3-Clause",
"private": true,
"workspaces": [
"scaffold",
"packages/*",
"sample-app"
],
"scripts": {
"bootstrap": "npm run build --workspace packages --if-present",
"lint": "eslint",
"build": "npm run build -ws --if-present",
"test": "npm run test -ws --if-present -- --run",
"clean": "npx -y rimraf node_modules **/node_modules/",
"start": "npm run dev --workspace @boostv/process-optimizer-frontend-sample-app",
"dev:app": "npm run dev --workspace @boostv/process-optimizer-frontend-sample-app",
"dev:ui": "npm run dev --workspace @boostv/process-optimizer-frontend-ui",
"dev:core": "npm run dev --workspace @boostv/process-optimizer-frontend-core",
"openapi": "npm run openapi --workspace @boostv/process-optimizer-frontend-api",
"update-deps": "npx npm-check-updates -ws --root -i",
"prepare": "husky",
"formatAll": "prettier --write .",
"prettier": "prettier --check .",
"release": "npm run build && changeset publish"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.{js,ts,tsx}": "eslint --fix"
},
"devDependencies": {
"@boostv/eslint-config": "*",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"ajv": "^8.17.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^6.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"engineStrict": true,
"engines": {
"npm": ">=8.15.0",
"yarn": ">100.0.0"
},
"dependencies": {
"@changesets/cli": "^2.27.10"
}
}