-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 990 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 990 Bytes
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
{
"name": "job_tracker_node_react",
"version": "1.5.0",
"private": true,
"description": "A job tracking application with a Node.js backend and React frontend.",
"scripts": {
"dev": "concurrently --kill-others-on-fail \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm install && npm run build",
"build:backend": "cd backend && npm install && npm run build",
"lint": "eslint \"{frontend,backend}/**/*.{ts,tsx,js,jsx}\" --fix",
"format": "prettier --write \"{frontend,backend}/**/*.{ts,tsx,js,jsx,json,md}\""
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"concurrently": "^9.1.2",
"eslint": "^9.22.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"tsc-alias": "^1.8.16",
"typescript": "~5.6.2"
}
}