-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 1.03 KB
/
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
32
33
34
35
{
"name": "full-stack-launcher",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"firstInstall": "(npm install); (cd backend && npm install); (cd backend && npm install)",
"start": "nodemon backend/server",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm start\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiagofonsecasilva/full-stack-launcher.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tiagofonsecasilva/full-stack-launcher/issues"
},
"homepage": "https://github.com/tiagofonsecasilva/full-stack-launcher#readme",
"dependencies": {
"axios": "^0.21.1",
"concurrently": "^6.2.0",
"cors": "^2.8.5",
"nodemon": "^2.0.12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-toastify": "^7.0.4",
"web-vitals": "^1.0.1"
}
}