-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.72 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "musclelib-api",
"version": "2.1.0",
"description": "MuscleLib API is a RESTful API for searching exercises, with support for multiple languages and pagination. It was built using Node.js and Express.js, and it uses a MongoDB data[...]",
"main": "server/start.js",
"scripts": {
"start": "node server/start.js",
"dev": "nodemon server/start.js",
"test": "jest",
"lint": "eslint .",
"format": "prettier --write ."
},
"author": "Daniel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MuscleLib/musclelib-api.git"
},
"keywords": [
"api",
"exercises",
"fitness",
"health",
"musclelib",
"nodejs",
"expressjs",
"mongodb",
"restful",
"swagger",
"json",
"pagination",
"multilanguage"
],
"dependencies": {
"axios": "^1.16.1",
"body-parser": "^2.2.2",
"bootstrap-icons": "^1.13.1",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"fuse.js": "^7.3.0",
"mongoose": "^9.6.2",
"nodemon": "^3.1.14",
"path": "^0.12.7",
"swagger-ui-express": "^5.0.1",
"walk-up-path": "^4.0.0"
},
"engines": {
"node": ">=20 <23"
},
"devDependencies": {
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.4.2",
"prettier": "^3.8.3",
"supertest": "^7.2.2"
},
"bugs": {
"url": "https://github.com/MuscleLib/musclelib-api/issues"
},
"homepage": "https://github.com/MuscleLib/musclelib-api"
}