Skip to content

Commit 4d94b98

Browse files
authored
Create node,json
1 parent 788d95b commit 4d94b98

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

.vscode/node,json

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"name": "juno-health-api",
3+
"version": "1.0.0",
4+
"description": "Backend API for Juno colon health tracking application",
5+
"main": "server.js",
6+
"scripts": {
7+
"start": "node server.js",
8+
"dev": "nodemon server.js",
9+
"test": "jest --coverage",
10+
"test:watch": "jest --watch",
11+
"lint": "eslint .",
12+
"lint:fix": "eslint . --fix",
13+
"migrate": "node scripts/migrate.js",
14+
"seed": "node scripts/seed.js"
15+
},
16+
"keywords": [
17+
"health",
18+
"colon",
19+
"tracking",
20+
"wellness",
21+
"api"
22+
],
23+
"author": "Juno Health Team",
24+
"license": "MIT",
25+
"dependencies": {
26+
"express": "^4.18.2",
27+
"mongoose": "^8.0.3",
28+
"dotenv": "^16.3.1",
29+
"bcryptjs": "^2.4.3",
30+
"jsonwebtoken": "^9.0.2",
31+
"cors": "^2.8.5",
32+
"helmet": "^7.1.0",
33+
"express-rate-limit": "^7.1.5",
34+
"express-validator": "^7.0.1",
35+
"morgan": "^1.10.0",
36+
"compression": "^1.7.4",
37+
"nodemailer": "^6.9.7",
38+
"multer": "^1.4.5-lts.1",
39+
"date-fns": "^3.0.6",
40+
"winston": "^3.11.0",
41+
"joi": "^17.11.0"
42+
},
43+
"devDependencies": {
44+
"nodemon": "^3.0.2",
45+
"jest": "^29.7.0",
46+
"supertest": "^6.3.3",
47+
"eslint": "^8.56.0",
48+
"eslint-config-airbnb-base": "^15.0.0",
49+
"eslint-plugin-import": "^2.29.1",
50+
"@types/node": "^20.10.6",
51+
"mongodb-memory-server": "^9.1.4"
52+
},
53+
"engines": {
54+
"node": ">=18.0.0",
55+
"npm": ">=9.0.0"
56+
},
57+
"repository": {
58+
"type": "git",
59+
"url": "https://github.com/juno-health/api.git"
60+
},
61+
"bugs": {
62+
"url": "https://github.com/juno-health/api/issues"
63+
},
64+
"homepage": "https://github.com/juno-health/api#readme"
65+
}

0 commit comments

Comments
 (0)