-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.23 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
{
"name": "next-cinema-api",
"version": "1.0.0",
"description": "A concise RESTful backend built with Node.js (Express) and MongoDB (Mongoose).",
"homepage": "https://github.com/alexmita04/next-cinema-api#readme",
"bugs": {
"url": "https://github.com/alexmita04/next-cinema-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexmita04/next-cinema-api.git"
},
"license": "MIT",
"author": "Mita Alexandru Serban",
"type": "commonjs",
"main": "server.js",
"scripts": {
"dev": "node --watch ./src/server.js",
"build": "echo 'No build step required for this Express API.'",
"seed": "node ./src/seeding/seed.js",
"test": "jest"
},
"dependencies": {
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.1.0",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^8.1.0",
"helmet": "^8.1.0",
"joi": "^18.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.18.3",
"node-cron": "^4.2.1",
"stripe": "^19.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"dotenv": "^17.2.3",
"jest": "^29.7.0",
"morgan": "^1.10.1",
"supertest": "^7.1.4"
}
}