forked from pauloborba/teaching-assistant-react
-
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) · 1019 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1019 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
27
28
29
30
31
32
33
34
35
{
"name": "teaching-assistant-app",
"version": "1.0.0",
"description": "Full-stack student management system with React frontend and Node.js backend",
"private": true,
"scripts": {
"install": "npm install --prefix server && npm install --prefix client",
"install:server": "npm install --prefix server",
"install:client": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "PORT=3005 npm run dev --prefix server",
"client": "PORT=3004 npm start --prefix client",
"build": "npm run build --prefix client",
"test": "npm test --prefix client",
"lint": "npm run lint --prefix client"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"keywords": [
"react",
"nodejs",
"typescript",
"express",
"student-management",
"fullstack"
],
"author": "Paulo",
"license": "ISC",
"workspaces": [
"client",
"server"
]
}