-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.19 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
{
"name": "Node_Express_Production_Boilerplate",
"version": "1.0.1",
"description": "Node_Express_Production_Boilerplate",
"main": "server.js",
"author": "alam jamal",
"repository": {
"type": "git",
"url": "https://github.com/alamjamal/Node_Express_Production_Boilerplate"
},
"scripts": {
"start": "node ./server.js",
"start:dev": "nodemon ./server.js",
"eslint": "eslint ./",
"eslint-fix": "eslint ./ --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"prod": "node build/www/server.js"
},
"dependencies": {
"@sentry/node": "^7.114.0",
"@sentry/profiling-node": "^7.114.0",
"@tus/file-store": "^1.0.0-beta.1",
"@tus/server": "^1.0.0-beta.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"child_process": "^1.0.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-rate-limit": "^6.9.0",
"extract-zip": "^2.0.1",
"firebase-admin": "^12.1.1",
"fs-extra": "^11.1.0",
"helmet": "^7.0.0",
"http-errors": "^2.0.0",
"http-status": "^1.7.4",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.9",
"mongoose": "^5.9.21",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.2",
"nodemailer": "^6.7.7",
"rate-limit-redis": "^3.0.2",
"redis": "^4.6.7",
"rootpath": "^0.1.2",
"rotating-file-stream": "^3.0.4",
"sharp": "^0.32.1",
"util": "^0.12.4",
"winston": "^3.10.0"
},
"devDependencies": {
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-plugin-unused-imports": "^3.0.0",
"file-loader": "^6.2.0",
"nodemon": "^2.0.4",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}