-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 910 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 910 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
{
"name": "stock-app",
"version": "1.0.0",
"description": "Full stack Stock app with React frontend and Express backend",
"main": "app.js",
"scripts": {
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "node server.js",
"start:frontend": "cd client && npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "",
"dependencies": {
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"finnhub": "^1.2.18",
"google-finance": "^0.1.12",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"react-bootstrap": "^2.10.2",
"yahoo-finance": "^0.3.8",
"yahoo-finance2": "^2.11.2"
},
"devDependencies": {
"concurrently": "^7.0.0",
"nodemon": "^3.0.2"
}
}