generated from Adedoyin-Emmanuel/nodejs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.5 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
84
{
"name": "nodejs-template",
"version": "1.0.0",
"description": "A simple nodejs template for building nodejs applications",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint .",
"check-lint": "eslint [0-9]*.ts",
"build": "rimraf ./dist && tsc index.ts --esModuleInterop true --target ES6 --module nodenext --moduleResolution nodenext --outDir dist",
"start": "npm run build && node ./dist/index.js",
"dev": "nodemon index.ts",
"test": "jest",
"full-test": "eslint */[0-9]*.ts && jest --watchAll --verbose",
"full-test-fix": "eslint */[0-9]*.ts --fix && jest --watchAll --verbose"
},
"proxy": true,
"keywords": [],
"author": "Adedoyin Emmanuel Adeniyi",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/node": "^7.8.0",
"@babel/preset-env": "^7.6.0",
"@types/bcryptjs": "^2.4.4",
"@types/body-parser": "^1.19.5",
"@types/config": "^3.3.1",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/express-slow-down": "^1.3.3",
"@types/jsonwebtoken": "^9.0.3",
"@types/lodash": "^4.14.199",
"@types/morgan": "^1.9.6",
"@types/multer": "^1.4.8",
"@types/node": "^20.7.1",
"@types/nodemailer": "^6.4.11",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.5",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
},
"engines": {
"node": "18.18.0"
},
"dependencies": {
"@squadco/js": "^1.2.0",
"@uploadfly/js": "^1.0.6",
"axios": "^1.6.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"build": "^0.1.4",
"compression": "^1.7.4",
"config": "^3.3.9",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.0.2",
"express-slow-down": "^1.6.0",
"helmet": "^7.1.0",
"joi": "^17.10.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^7.5.3",
"morgan": "^1.10.0",
"nodemailer": "^6.9.6",
"redis": "^4.6.11",
"rimraf": "^5.0.5",
"socket.io": "^4.7.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.1",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"xss-clean": "^0.1.4"
}
}