-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (51 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (51 loc) · 1.48 KB
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
{
"name": "nodepress-api",
"version": "1.0.0",
"description": "A Medium-like blogging backend built with Node.js, Express, and MongoDB",
"main": "server.js",
"engines": {
"node": ">=18"
},
"scripts": {
"mongo:start": "docker run --name realworld-mongo -p 27017:27017 mongo & sleep 5",
"start": "node ./server.js",
"dev": "nodemon ./server.js",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint .",
"test": "newman run ./tests/api-tests.postman.json -e ./tests/env-api-tests.postman.json",
"stop": "lsof -ti :3000 | xargs kill",
"mongo:stop": "docker stop realworld-mongo && docker rm realworld-mongo"
},
"repository": {
"type": "git",
"url": "https://github.com/Adityarajsingh2904/nodepress-api"
},
"license": "ISC",
"dependencies": {
"body-parser": "1.15.0",
"cors": "^2.8.5",
"ejs": "2.4.1",
"errorhandler": "1.4.3",
"express": "^4.18.2",
"express-jwt": "3.3.0",
"express-session": "1.13.0",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.0",
"method-override": "2.3.5",
"methods": "1.1.2",
"mongoose": "^7.5.0",
"mongoose-unique-validator": "^2.0.3",
"morgan": "1.7.0",
"passport": "^0.6.0",
"passport-local": "1.0.0",
"slug": "0.9.1",
"underscore": "1.8.3",
"helmet": "^7.0.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"newman": "^6.0.0",
"nodemon": "^3.0.2",
"eslint": "^9.0.0"
},
"author": "Aditya Raj Singh <thisis.adityarajsingh@gmail.com>"
}