-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
36
37
38
39
40
41
42
{
"name": "react-workout-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"npm": "6.14.13",
"node": "14.17.0"
},
"scripts": {
"packages-install": "npm ci && cd frontend && npm ci",
"build": "cd frontend && npm install --only=dev && npm install && npm run predeploy",
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dmytro1991ua/react-workout-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dmytro1991ua/react-workout-app/issues"
},
"homepage": "https://github.com/Dmytro1991ua/react-workout-app#readme",
"dependencies": {
"body-parser": "^1.20.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"firebase-admin": "^10.3.0",
"mongoose": "^6.3.4"
},
"devDependencies": {
"concurrently": "^7.2.1",
"nodemon": "^2.0.16"
}
}