-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 944 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 944 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
{
"name": "enhanced_full_stack_app",
"version": "2.0.0",
"description": "Enhanced full-stack web application with React frontend and Node.js/Express backend featuring user management, product catalog, task management, order processing, analytics, and search functionality",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"server": "nodemon server/index.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"nodejs",
"express",
"full-stack",
"api",
"rest",
"crud",
"web-application"
],
"author": "Full-Stack Developer",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0"
},
"devDependencies": {
"concurrently": "^9.2.0",
"nodemon": "^3.1.10"
}
}