-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 950 Bytes
/
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
{
"name": "healthdiary",
"version": "0.1.0",
"description": "A personal health diary, on which to note the illnesses, the prescriptions and the appointments with the doctors.",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "node index.js",
"start:dev": "node -r dotenv/config index.js dotenv_config_path=.env.dev",
"start:all": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xflofoxx/healthdiary.git"
},
"author": "Dario Olivini <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Xflofoxx/healthdiary/issues"
},
"homepage": "https://github.com/Xflofoxx/healthdiary#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.21.1",
"mongoose": "^6.13.3"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}