-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 962 Bytes
/
package.json
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
{
"name": "cursor-ai-project",
"version": "1.0.0",
"description": "A full-stack project with React frontend and Express.js backend.",
"scripts": {
"install:frontend": "cd frontend && npm install",
"install:backend": "cd backend && npm install",
"install": "npm run install:frontend && npm run install:backend",
"start:frontend": "cd frontend && npm start",
"start:backend": "cd backend && npm start",
"start": "concurrently \"npm run start:frontend\" \"npm run start:backend\"",
"build:frontend": "cd frontend && npm run build"
},
"devDependencies": {
"concurrently": "^6.0.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongoose": "^8.2.4",
"morgan": "^1.10.0",
"plotly.js": "^2.30.1",
"react-plotly.js": "^2.6.0",
"react-router-dom": "^6.22.3",
"react-scripts": "^3.0.1"
}
}