-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (30 loc) · 934 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
28
29
30
31
{
"name": "weather-dashboard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run client:build && npm run server",
"start:dev": "concurrently \"npm run server:dev\" \"wait-on tcp:3001 && npm run client:dev\"",
"server": "cd server && npm start",
"server:dev": "cd server && npm run dev",
"install": "cd server && npm i && cd ../client && npm i",
"client:build": "cd client && npm run build",
"client:dev": "cd client && npm run dev",
"build": "cd client && npm run build",
"render-build": "npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"wait-on": "^7.2.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"bootstrap": "^5.3.3"
}
}