-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 832 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
{
"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",
"dev": "nodemon app.js"
},
"author": "Airtribe",
"license": "ISC",
"devDependencies": {
"nodemon": "^3.1.9",
"supertest": "^6.3.4",
"tap": "^18.6.1"
},
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.3"
},
"engines": {
"node": ">= 18.0.0"
}
}