-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "workout-tracker-api",
"version": "1.0.0",
"description": "api for workout-tracker web application",
"main": "server.js",
"scripts": {
"dev": "npx nodemon server/root.js -w server",
"start": "npx nodemon server/root.js -w server",
"test": "jest --detectOpenHandles --forceExit",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kimwoodfield/workout-tracker-api.git"
},
"author": "Kim Woodfield",
"license": "ISC",
"bugs": {
"url": "https://github.com/kimwoodfield/workout-tracker-api/issues"
},
"homepage": "https://github.com/kimwoodfield/workout-tracker-api#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-session": "^1.17.1",
"express-validator": "^6.10.0",
"mysql": "^2.18.1",
"winston": "^3.3.3"
},
"devDependencies": {
"jest": "^27.0.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
}
}