-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "pharmaintel-api",
"version": "1.0.0",
"description": "Intelligent pharmacist API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"pharmacy",
"api",
"drug-interactions"
],
"author": "Dr. Mostafa Abd-el-Kader",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ELMOURABEA/pharmaintel-api.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"axios": "^1.13.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^5.1.0",
"express-rate-limit": "^6.10.0",
"helmet": "^8.1.0"
},
"devDependencies": {
"eslint": "^9.39.1",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.6.2"
}
}