-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "edworld",
"version": "1.0.0",
"description": "a students and teachers managment tool for educational institution",
"main": "server.js",
"scripts": {
"start": "SET NODE_ENV=production&node server.js",
"dev": "SET NODE_ENV=development&nodemon server.js",
"lint": "eslint . --ext .js",
"pretty": "prettier --check .",
"style": "eslint --fix . --ext .js",
"poststyle": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/shamilkotta/edWorld.git"
},
"keywords": [
"nodejs",
"express",
"mongodb",
"student-managment",
"educational"
],
"author": "shamil",
"license": "ISC",
"bugs": {
"url": "https://github.com/shamilkotta/edWorld/issues"
},
"homepage": "https://github.com/shamilkotta/edWorld#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"cloudinary": "^1.32.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"express-session": "^1.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"puppeteer": "^19.3.0",
"razorpay": "^2.8.4",
"yup": "^0.32.11"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
}
}