-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "startwars",
"version": "0.0.2",
"description": "star wars API to mongodb collection",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon ./src/index.js --watch .env --watch ./src",
"test:coverage": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --no-cache --passWithNoTests --detectOpenHandles --verbose --coverage --forceExit",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --no-cache --passWithNoTests --runInBand --detectOpenHandles --verbose --forceExit",
"compose:up": "docker compose up",
"compose:upd": "docker compose up -d",
"compose:rebuild": "docker compose up --build",
"compose:down": "docker compose down -v",
"gendoc": "node src/swagger.js",
"format": "npx @biomejs/biome format ./src/**/*.js --write",
"lint": "npx @biomejs/biome lint ./src/**/*.js --write"
},
"keywords": [
"starwars",
"swapi"
],
"engines": {
"node": "20.x"
},
"author": {
"name": "Jone Polvora",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpolvora/startwars.git"
},
"license": "MIT",
"dependencies": {
"amqplib": "^0.10.3",
"axios": "^1.6.2",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"envalid": "^8.0.0",
"express": "^4.18.2",
"express-favicon": "^2.0.4",
"fastest-validator": "^1.17.0",
"helmet": "^7.1.0",
"http-graceful-shutdown": "^3.1.13",
"mongodb": "^6.3.0",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@babel/plugin-syntax-import-attributes": "^7.23.3",
"@biomejs/biome": "1.4.1",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
}
}