-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.08 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.08 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
68
69
70
71
72
73
74
75
76
77
{
"name": "express",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"dev": "tsx --watch --env-file .env index.ts",
"start": "node --env-file .env dist/index.js",
"build": "tsc -p tsconfig.build.json",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest --run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"prepare": "husky",
"tsoa-spec": "tsoa spec",
"tsoa-routes": "tsoa routes",
"tsoa-all": "tsoa spec-and-routes"
},
"keywords": [],
"author": "Fernanda Gomes",
"license": "ISC",
"dependencies": {
"@azure/storage-blob": "^12.28.0",
"@netlify/functions": "^4.0.0",
"@tsconfig/node22": "^22.0.2",
"camelcase-keys": "^10.0.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.0.1",
"mssql": "^11.0.1",
"multer": "^2.0.2",
"serverless-http": "^3.2.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.6.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/mssql": "^9.1.7",
"@types/multer": "^2.0.0",
"@types/node": "^22.15.23",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitest/coverage-v8": "^3.1.4",
"@vitest/eslint-plugin": "^1.2.1",
"@vitest/ui": "^3.1.4",
"eslint": "^9.34.0",
"eslint-plugin-perfectionist": "^4.15.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vitest": "^3.1.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
}
}