-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "dumsor-tracker-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"author": "Leslie S. Gyamfi",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@supabase/supabase-js": "^2.42.7",
"dotenv": "^16.4.5",
"eslint-config-prettier": "^9.1.0",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"libphonenumber-js": "^1.10.61",
"moment": "2.30.1",
"mongodb": "^6.5.0",
"mongoose": "^8.3.2",
"morgan": "^1.10.0",
"nodemon": "^3.1.0",
"redis": "^4.7.0",
"supabase": "^1.163.2",
"validator": "^13.11.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.6",
"prettier": "^3.2.5"
}
}