-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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": "noddit",
"version": "1.0.0",
"description": "A Reddit clone implemented in Node.js",
"engines": {
"node": ">=14.0.0"
},
"main": "./src/server.js",
"scripts": {
"start": "nodemon ./src/server.js",
"test": "jest --runInBand --forceExit"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArjanAswal/Noddit.git"
},
"keywords": [
"Noddit"
],
"author": "Arjan Aswal",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ArjanAswal/Noddit/issues"
},
"homepage": "https://github.com/ArjanAswal/Noddit#readme",
"dependencies": {
"aws-sdk": "^2.1121.0",
"axios": "^0.26.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.3.0",
"helmet": "^5.0.2",
"hpp": "^0.2.3",
"html-to-text": "^8.2.0",
"jsonschema": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.11",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.3",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"redis": "^4.0.6",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"winston": "^3.7.2",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2"
}
}