generated from FIS2425/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
61
62
63
64
65
66
67
68
{
"name": "appointment",
"version": "1.0.0",
"description": "Appointment service",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.9.0",
"yarn": "Yarn is not supported, please use npm",
"pnpm": "PNPM is not supported, please use npm"
},
"type": "module",
"main": "index.js",
"scripts": {
"start": "node ./src/config/index.js",
"lint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
"lint-fix": "eslint . --fix --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
"dev": "node --watch --env-file=.env ./src/config/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"populate": "node ./populators/runPopulator.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FIS2425/template.git"
},
"keywords": [
"microservice",
"MERN"
],
"author": "alvarobernal2412",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FIS2425/template/issues"
},
"homepage": "https://github.com/FIS2425/template#readme",
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "9.17.0",
"@stylistic/eslint-plugin-js": "2.12.1",
"eslint": "9.17.0",
"globals": "15.14.0",
"husky": "9.1.7",
"mongodb-memory-server": "10.1.3",
"supertest": "7.0.0",
"vitest": "2.1.8"
},
"dependencies": {
"amqplib": "0.10.5",
"axios": "1.7.9",
"body-parser": "1.20.3",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"express": "4.21.2",
"ioredis": "5.4.2",
"ioredis-mock": "8.9.0",
"jsonwebtoken": "9.0.2",
"kafkajs": "2.2.4",
"mongoose": "8.9.3",
"openapi-to-md": "1.0.25",
"opossum": "8.4.0",
"rabbitmq-client": "5.0.2",
"swagger-ui-express": "5.0.1",
"uuid": "11.0.4",
"winston": "3.17.0",
"yamljs": "0.3.0"
}
}