-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 758 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 758 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
{
"type": "module",
"name": "weather-cli",
"version": "1.0.0",
"description": "Get the weather forecast for a location using OpenWeatherMap API",
"main": "backend/server.js",
"scripts": {
"start": "node --require dotenv/config backend/server.js",
"build": "cd frontend && npm install && npm run build",
"deploy": "npm run build && npm run start",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"backend": "node --require dotenv/config backend/server.js",
"frontend": "cd frontend && npm start"
},
"dependencies": {
"chalk": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^16.4.6",
"express": "^4.21.2",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"concurrently": "^7.6.0"
}
}