-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 882 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
32
33
34
35
36
{
"name": "exercise-tracker-api",
"version": "1.0.0",
"description": "A simple app used to log & track different exercises done by a user. This is the backend API server for the app.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prestart": "npm link client/node_modules/react",
"start": "netlify dev"
},
"keywords": [
"express",
"react",
"reactjs",
"api",
"exercise",
"backend",
"frontend",
"utility",
"health",
"freeCodeCamp"
],
"author": "Saideep Dicholkar",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/material": "^5.4.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^15.0.0",
"express": "^4.18.2",
"mongoose": "^6.4.6",
"serverless-http": "^2.7.0"
}
}