-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.5 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.5 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
{
"name": "carelog",
"version": "1.0.0",
"description": "A web application to manage and access electronic medical records. The platform allows doctors to view patient histories, add medical notes, and prescribe treatments, while patients can securely access their medical records, prescriptions, and appointment history anytime, anywhere.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "npx sequelize-cli db:migrate:undo:all && npx sequelize-cli db:migrate",
"seed": "npx sequelize-cli db:seed:undo:all && npx sequelize-cli db:seed:all",
"resetDB": "npx sequelize-cli db:migrate:undo:all && npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all",
"dev": "npx nodemon app.js",
"build:css": "npx @tailwindcss/cli -i ./public/assets/css/input.css -o ./public/assets/css/output.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raxelf/CareLog.git"
},
"keywords": [],
"author": "raxelf",
"license": "ISC",
"bugs": {
"url": "https://github.com/raxelf/CareLog/issues"
},
"homepage": "https://github.com/raxelf/CareLog#readme",
"dependencies": {
"bcryptjs": "^3.0.2",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-session": "^1.18.2",
"jspdf-autotable": "^5.0.2",
"pg": "^8.16.3",
"sequelize": "^6.37.7"
},
"devDependencies": {
"@tailwindcss/cli": "^4.1.11",
"nodemon": "^3.1.10",
"sequelize-cli": "^6.6.3",
"tailwindcss": "^4.1.11"
}
}