-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 856 Bytes
/
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
{
"name": "news-aggregator-api",
"version": "1.0.0",
"description": "Assignment 2 for backend engineering launchpad",
"main": "index.js",
"scripts": {
"pretest": "node -e \"if (process.version.slice(1).split('.')[0] < 18) { console.error('Unsupported Node.js version, please use version 18'); process.exit(1); }\"",
"test": "tap test/*.js --disable-coverage"
},
"author": "Airtribe",
"license": "ISC",
"devDependencies": {
"nodemon": "^3.1.9",
"supertest": "^6.3.4",
"tap": "^18.6.1"
},
"dependencies": {
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2"
},
"engines": {
"node": ">= 18.0.0"
}
}