-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.27 KB
/
package.json
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
78
79
80
81
{
"name": "caravaggio",
"version": "3.9.0",
"description": "A blazing fast image processor service",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"caravaggio": "dist/bin/caravaggio.js"
},
"scripts": {
"start": "NODE_ENV=production node dist/server",
"dev": "NODE_ENV=development tsnd --respawn src/server.ts",
"build": "rimraf -G dist/ && NODE_ENV=production tsc --build",
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run test-only -- --coverage --colors=false",
"test-only": "NODE_ENV=test jest",
"test-watch": "npm run test-only -- --watch",
"lint": "biome check src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramiel/caravaggio.git"
},
"keywords": [
"image",
"proxy",
"manipulation",
"processor",
"service"
],
"author": "Fabrizio Ruggeri",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/ramiel/caravaggio/issues"
},
"homepage": "https://caravaggio.ramielcreations.com",
"dependencies": {
"@vercel/node": "^2.4.0",
"configuring": "^0.3.2",
"express-compression": "^1.0.1",
"fs-extra": "^9.0.0",
"lodash": "^4.17.21",
"md5": "^2.2.1",
"micro": "^9.3.4",
"microrouter": "^3.1.3",
"node-fetch": "^2.6.0",
"pino": "^6.2.1",
"pino-pretty": "^4.0.0",
"redis": "^4.6.5",
"sharp": "^0.33.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@biomejs/biome": "1.5.2",
"@types/async": "^3.2.3",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.2.1",
"@types/jest-image-snapshot": "^3.1.0",
"@types/md5": "^2.2.0",
"@types/micro": "^7.3.3",
"@types/microrouter": "^3.1.1",
"@types/node": "^20.11.5",
"@types/node-fetch": "^2.5.7",
"@types/pino": "^6.0.0",
"@types/sharp": "^0.25.0",
"@types/test-listen": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint-plugin-prettier": "^5.1.3",
"got": "^11.1.4",
"jest": "^29.7.0",
"jest-image-snapshot": "^6.1.0",
"prettier": "^3.2.4",
"redis-memory-server": "^0.6.0",
"rimraf": "^3.0.2",
"test-listen": "^1.1.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}