-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "news-aggregator-api",
"version": "0.0.0",
"description": "RESTful API that allows users to fetch news articles from multiple sources based on their preferences.",
"main": "src/app.js",
"scripts": {
"start": "node --watch --no-warnings src/app.js",
"test": "mocha --recursive 'test/**/*.js' --timeout 10000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chinmaykunkikar/news-aggregator-api.git"
},
"author": "Chinmay Kunkikar",
"license": "ISC",
"bugs": {
"url": "https://github.com/chinmaykunkikar/news-aggregator-api/issues"
},
"homepage": "https://github.com/chinmaykunkikar/news-aggregator-api#readme",
"dependencies": {
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^7.0.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.0",
"nanoid": "^3.3.6",
"rate-limiter-flexible": "^2.4.1",
"winston": "^3.8.2"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"mocha": "^10.2.0"
}
}