-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.18 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.18 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
{
"name": "whiskey-canon",
"version": "1.1.0",
"description": "Whiskey data management application with RBAC",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "npm run build --workspaces",
"start": "npm start --workspace=backend",
"lint": "eslint --max-warnings=-1 'backend/src/**/*.ts' 'frontend/src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix 'backend/src/**/*.ts' 'frontend/src/**/*.{ts,tsx}'",
"format": "prettier --check 'backend/src/**/*.ts' 'frontend/src/**/*.{ts,tsx}'",
"format:fix": "prettier --write 'backend/src/**/*.ts' 'frontend/src/**/*.{ts,tsx}'"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"concurrently": "^9.2.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"typescript-eslint": "^8.58.2"
},
"dependencies": {
"react-is": "^19.2.5"
}
}