-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 977 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
28
29
{
"name": "csbroker-frontend",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "npm run dev --workspace=service",
"dev:admin": "npm run dev --workspace=admin",
"build": "npm run build --workspace=service",
"build:admin": "npm run build --workspace=admin",
"lint": "eslint 'packages/**/src/**/*.{ts,tsx,js,jsx}'",
"lint-diff": "eslint $(git diff --name-only --diff-filter=duxb origin/$BASE origin/$HEAD | grep -E '\\.((j|t)sx?)$' | xargs)",
"test": "npm run test --workspace=service"
},
"workspaces": [
"packages/service",
"packages/admin",
"packages/auth"
],
"devDependencies": {
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.30.1",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0"
}
}