-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 864 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 864 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
{
"scripts": {
"server": "cd server && nodemon src/app",
"client": "cd client && yarn start",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"root_setup": "npm install",
"server_setup": "cd server && npm install",
"client_setup": "cd client && npm install",
"setup": "concurrently --kill-others-on-fail \"yarn root_setup\" \"yarn server_setup\" \"yarn client_setup\""
},
"private": "true",
"dependencies": {
"@craco/craco": "^6.4.5",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"concurrently": "^7.2.2",
"express": "^4.18.1",
"nodemon": "^2.0.19",
"svgo": "^2.8.0",
"uuid": "^8.3.2",
"yarn": "^1.22.19"
}
}