generated from FIS2425/template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.86 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "template",
"version": "1.0.0",
"description": "Template repository for starting a microservice",
"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": {
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"country-list": "2.3.0",
"cross-spawn": "7.0.6",
"dotenv": "16.4.7",
"express": "4.21.2",
"install": "0.13.0",
"jsonwebtoken": "9.0.2",
"kafka-node": "5.0.0",
"mongoose": "8.9.3",
"npm": "10.9.0",
"opossum": "8.4.0",
"stripe": "17.5.0",
"swagger-ui-express": "5.0.1",
"uuid": "11.0.4",
"winston": "3.17.0",
"yamljs": "0.3.0"
}
}