-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.32 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "giftabite",
"version": "1.0.0",
"description": "A Food Waste Management And Donation App",
"main": "index.js",
"scripts": {
"test": "mocha --recursive test/",
"test_jest": "jest",
"start": "NODE_ENV=development nodemon index.js || node index.js",
"prod_start": "NODE_ENV=production nodemon index.js || node index.js",
"dev_start": "NODE_ENV=development nodemon index.js || node index.js",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pritam1813/giftabite.git"
},
"keywords": [
"Food Donation",
"Donation",
"NGO",
"Social Service",
"NodeJS",
"Express",
"Mongo"
],
"author": "Pritam Dhara",
"license": "ISC",
"bugs": {
"url": "https://github.com/pritam1813/giftabite/issues"
},
"homepage": "https://github.com/pritam1813/giftabite#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"bootstrap": "^5.3.0-alpha3",
"connect-mongo": "^5.0.0",
"cookie-parser": "^1.4.6",
"deep-email-validator": "^0.1.21",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-dart-sass": "^1.0.4",
"express-session": "^1.17.3",
"jquery": "^3.6.4",
"mongoose": "^7.0.5",
"node-fetch": "^2.6.9",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"sass-mq": "^6.0.0"
},
"devDependencies": {
"@floscom/google-fonts-webpack-plugin": "^1.7.1",
"babel-loader": "^9.1.2",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"clean-webpack-plugin": "^4.0.0",
"connect-mongodb-session": "^3.1.1",
"css-loader": "^6.7.4",
"css-minimizer-webpack-plugin": "^5.0.0",
"file-loader": "^6.2.0",
"glob": "^10.2.2",
"ignore-loader": "^0.1.2",
"image-minimizer-webpack-plugin": "^3.8.2",
"jest": "^29.5.0",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"null-loader": "^4.0.1",
"purgecss-webpack-plugin": "^5.0.0",
"responsive-loader": "^3.1.2",
"sass-loader": "^13.3.0",
"sharp": "^0.32.0",
"sinon": "^15.0.4",
"supertest": "^6.3.3",
"svg-url-loader": "^8.0.0",
"terser-webpack-plugin": "^5.3.9",
"url-loader": "^4.1.1",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1",
"webpack-fix-style-only-entries": "^0.6.1",
"webpack-manifest-plugin": "^5.0.0"
}
}