-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 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": "abacus-exam-backend",
"version": "2.1.8",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node ./src/index.js",
"dev": "nodemon ./src/index.js",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"format:check": "npx prettier . --check",
"format:fix": "npx prettier . --write"
},
"author": "Ankit Borude",
"license": "Apache-2.0",
"description": "abacus exam REST API",
"type": "module",
"dependencies": {
"bcryptjs": "^2.4.3",
"config": "^3.3.12",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^8.0.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"jspdf": "^2.5.2",
"jspdf-autotable": "^3.8.4",
"mongoose": "^8.5.3",
"morgan": "^1.10.0",
"random-js": "^2.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"nodemon": "^3.1.9",
"prettier": "3.4.2"
}
}