-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 787 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 787 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
26
{
"name": "hiringai",
"version": "1.0.0",
"description": "Full-stack application with Express, MongoDB, React, and TypeScript",
"main": "/server/dist/index.js",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm run dev",
"install:all": "npm install && cd server && npm install && cd ../client && npm install",
"build": "cd client && VITE_API_BASE_URL=https://hiringai.onrender.com/api npm run build && cd ../server && npm run build"
},
"keywords": [
"express",
"mongodb",
"react",
"typescript",
"authentication"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.15.2",
"concurrently": "^8.2.2"
}
}