-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 968 Bytes
/
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
{
"name": "loan-servicing",
"workspaces": [
"libs/loan-servicing-common",
"packages/loan-servicing-ui",
"packages/loan-servicing-api",
"packages/loan-servicing-functions"
],
"scripts": {
"build": "npm run build --workspaces",
"dev": "docker-compose -f docker-compose.dev.yml up",
"dev:build": "docker-compose -f docker-compose.dev.yml up --build",
"lint-fix": "eslint . --ext ts --fix & npx prettier . --write",
"lint": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0 & npx prettier . --check"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"prettier": "^3.2.5"
}
}