-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.75 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "yourfeeds-api",
"version": "1.0.0",
"description": "yourFeeds is a backend API for realtime access to curated feed posts, podcasts, etc. across numerous categories and many more based on user's preferences",
"repository": {
"type": "git",
"url": "git://github.com/gblend/yourfeedsApi.git"
},
"main": "dist/server",
"scripts": {
"dev": "nodemon dist/server",
"build": "rimraf -rf dist && tsc",
"postbuild": "copyfiles --error .env Procfile .github/**/*.* public/**/*.* dist",
"start": "NODE_ENV=production node dist/server",
"lint": "eslint --ignore-path .eslintignore .",
"format": "prettier --ignore-path .gitignore --write \"{app,test}/**/*.{js,ts}\"",
"pm2:dev": "NODE_ENV=development NODE_PATH=. DEBUG=* pm2 delete dist/ecosystem.config.js && pm2 start dist/ecosystem.config.js --no-daemon",
"pm2": "NODE_ENV=production NODE_PATH=. pm2 delete dist/ecosystem.config.js && pm2 start dist/ecosystem.config.js",
"stop": "NODE_PATH=. pm2 stop dist/ecosystem.config.js",
"test": "NODE_ENV=test jest --coverage dist/tests/* --forceExit",
"unit": "jest --coverage dist/tests/unit",
"integration": "NODE_ENV=test jest --coverage dist/tests/integration/* --forceExit",
"prepare": "husky install"
},
"author": "gabrielilo190@gmail.com",
"license": "ISC",
"dependencies": {
"@sentry/node": "^7.53.1",
"@sentry/profiling-node": "^0.3.0",
"@socket.io/admin-ui": "^0.4.0",
"@socket.io/redis-adapter": "^8.0.1",
"amqplib": "^0.8.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.27.1",
"connect-redis": "^5.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.2.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.4.1",
"express-session": "^1.17.3",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"install": "^0.13.0",
"ioredis": "^5.3.0",
"jest": "^29.5.0",
"joi": "^17.4.0",
"jsonwebtoken": "^9.0.0",
"mongodb-memory-server": "^8.9.0",
"mongoose": "^6.9.1",
"morgan": "^1.10.0",
"newrelic": "^9.15.0",
"nock": "^13.2.4",
"node-cron": "^3.0.2",
"nodemailer": "^6.7.2",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-twitter": "^0.1.5",
"pm2": "^5.3.0",
"retry": "^0.13.1",
"socket.io": "^4.5.1",
"supertest": "^6.1.6",
"swagger-ui-express": "^4.6.2",
"validator": "^13.6.0",
"winston": "^3.7.2",
"xml2js": "0.5.0",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.15",
"@types/express-fileupload": "^1.4.1",
"@types/express-session": "^1.17.5",
"@types/ioredis-mock": "^8.2.1",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.7",
"@types/passport": "^1.0.11",
"@types/passport-facebook": "^2.1.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-twitter": "^1.0.37",
"@types/retry": "^0.12.2",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"copyfiles": "^2.4.1",
"eslint": "^8.44.0",
"husky": "^8.0.3",
"ioredis-mock": "^8.2.6",
"lint-staged": "^13.2.3",
"mock-amqplib": "^1.8.1",
"nodemon": "^2.0.9",
"passport-mock-strategy": "^2.0.0",
"prettier": "^3.0.0",
"rimraf": "^4.1.2",
"socket.io-client": "^4.5.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14.0.0 <19.0.0"
}
}