-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "API para redimensionamento e estilização de imagens para prototipagem rápida e carregamento eficiente 🚀",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.ts",
"prettier": "npx prettier . --write",
"build": "npx tsc",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine",
"lint": "npx eslint ."
},
"author": "Lucas Ferrari",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/jasmine": "^5.1.4",
"@types/prettier": "^3.0.0",
"eslint": "^8.57.0",
"globals": "^15.6.0",
"jasmine": "^5.1.0",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
},
"dependencies": {
"@img/sharp-linux-x64": "^0.33.4",
"@types/nodemon": "^1.19.6",
"@types/sharp": "^0.32.0",
"express": "^4.19.2",
"gulp": "^5.0.0",
"nodemon": "^3.1.3",
"sharp": "^0.33.4"
}
}