-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.9 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
{
"name": "express-image-server",
"version": "1.0.4",
"description": "A Node.js middleware for creating image servers",
"author": "Vinicius Farias <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vinifarias/express-image-server.git"
},
"homepage": "https://github.com/vinifarias/express-image-server#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"image",
"express",
"sharp"
],
"scripts": {
"build": "tsc",
"start": "tsc & node ./lib/index.js",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"test": "jest",
"test:perf": "artillery run src/perf-tests/*.yml",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.145.0",
"aws-sdk": "^2.1157.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"node": "^18.5.0",
"sharp": "^0.30.6"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/multer-s3": "^3.0.0",
"@types/node": "^18.0.6",
"@types/sharp": "^0.30.4",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"aws-sdk-client-mock": "^1.0.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"files": [
"lib",
"LICENSE.md",
"README.md"
]
}