-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.61 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
{
"name": "better-pets-backend",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/MathGueff/better-pets-backend.git"
},
"author": "MathGueff <gueffmatheus@gmail.com>",
"license": "MIT",
"main": "source/app.js",
"scripts": {
"dev": "tsx watch source/app.ts --transpile-only",
"build": "tsc",
"test": "jest",
"start": "node dist/app.js",
"format": "prettier --write 'source/**/*.{js,jsx,ts,tsx,css,json}' --config .prettierrc",
"release": "semantic-release"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.5.0",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"mongoose": "^9.3.0",
"morgan": "^1.10.1",
"multer": "^2.1.1",
"swagger-ui-express": "^5.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/github": "^10.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.1.0",
"@types/node": "^25.5.0",
"@types/supertest": "^7.2.0",
"@types/swagger-ui-express": "^4.1.8",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"semantic-release": "^23.0.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.0.0"
}
}