-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "glicocheck-api",
"version": "1.1.8",
"description": "API for diabetes management.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon --env-file .env server.js",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix"
},
"engines": {
"node": "20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oluizeduardo/glicocheck-api.git"
},
"keywords": [
"diabetes monitoring",
"diabetes",
"health"
],
"author": "Luiz Eduardo da Costa",
"license": "ISC",
"homepage": "https://github.com/oluizeduardo/glicocheck-api#readme",
"dependencies": {
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"knex": "^3.1.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.15",
"pg": "^8.13.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"uuid": "^9.0.1",
"winston": "^3.9.0",
"zod": "^3.23.8"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"eslint": "^8.35.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.20"
}
}