-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
42
43
44
45
46
47
48
{
"name": "community-app-backend",
"version": "1.0.1",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"build": "npx tsc",
"migrate": "node src/migrate.js migrate",
"rollback": "node src/migrate.js rollback",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "Ditinex Enterprise <info@ditinex.com>",
"license": "MIT",
"engines": {
"node": ">=18.19.0 <19"
},
"dependencies": {
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-fileupload": "^1.5.1",
"http-status": "^1.7.4",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.5.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"sharp": "^0.33.4",
"socket.io": "^4.7.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3"
}
}