-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage-optimization.json
More file actions
48 lines (48 loc) · 1.19 KB
/
Copy pathpackage-optimization.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "image-optimization-service",
"version": "1.0.0",
"description": "Production-ready image optimization service with parallel processing, WebP conversion, and CDN integration",
"main": "backend/imageServer.js",
"type": "module",
"scripts": {
"start": "node backend/imageServer.js",
"dev": "nodemon backend/imageServer.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint backend/**/*.js frontend/**/*.jsx",
"format": "prettier --write \"backend/**/*.js\" \"frontend/**/*.jsx\""
},
"keywords": [
"image",
"optimization",
"cdn",
"webp",
"compression",
"parallel",
"performance"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"sharp": "^0.32.0",
"uuid": "^9.0.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"nodemon": "^3.0.1",
"jest": "^29.7.0",
"eslint": "^8.48.0",
"prettier": "^3.0.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/coderolisa/StrellerMinds-SmartContracts.git"
}
}