forked from HeitorMelo/teaching-assistant-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 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
36
37
38
39
40
41
42
43
44
45
46
{
"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": "cross-env PORT=3005 npm run dev --prefix server",
"client": "cross-env PORT=3004 npm start --prefix client",
"build": "npm run build --prefix client",
"test": "npm test --prefix client",
"lint": "npm run lint --prefix client",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:e2e": "cypress run"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^21.0.2",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.3",
"concurrently": "^8.2.2",
"cross-env": "^10.1.0",
"cypress": "^13.15.2"
},
"keywords": [
"react",
"nodejs",
"typescript",
"express",
"student-management",
"fullstack"
],
"author": "Paulo",
"license": "ISC",
"workspaces": [
"client",
"server"
],
"dependencies": {
"form-data": "^4.0.4",
"node-fetch": "^2.7.0"
}
}