-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
40
{
"name": "movie-rental-api",
"version": "1.0.0",
"description": "API for movie rentals",
"type": "module",
"main": "src/infra/http/server.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node src/infra/http/server.js",
"dev": "nodemon src/infra/http/server.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:e2e": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest-e2e.config.mjs"
},
"author": "Jose Rodrigues <[email protected]>",
"license": "MIT",
"dependencies": {
"@bebrasmell/zod-mongoose": "^1.0.1",
"axios": "^1.6.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"mongoose": "^8.0.3",
"ms": "^2.1.3",
"node-cron": "^3.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"supertest": "^6.3.3"
}
}