-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "image-fly",
"version": "0.1.0",
"description": "ImageFly: On-the-fly image processing and transformation",
"repository": {
"type": "git",
"url": "https://github.com/desholmes/imagefly"
},
"author": {
"name": "Des Holmes",
"url": "https://dholmes.co.uk"
},
"license": "MIT",
"scripts": {
"audit": "npm audit --production --audit-level=critical",
"build": "tsc",
"watch": "tsc -w",
"start": "func start",
"start:dev": "npm run build && concurrently \"func start\" \"npm run watch\" -k",
"lint": "./node_modules/.bin/eslint --max-warnings=0 --ext=ts,json ./",
"lint:fix": "./node_modules/.bin/eslint --max-warnings=0 --fix --ext=ts,json ./"
},
"devDependencies": {
"@types/hapi__joi": "17.1.9",
"@types/node": "18.11.19",
"@typescript-eslint/eslint-plugin": "5.50.0",
"concurrently": "7.6.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.3",
"typescript": "4.9.5"
},
"dependencies": {
"@azure/functions": "3.5.0",
"@azure/storage-blob": "12.13.0",
"axios": "1.3.4",
"joi": "17.8.3",
"limiter": "2.1.0",
"sharp": "0.32.0"
}
}