-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "bildx",
"version": "0.1.3",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/adamazad/bildx"
},
"main": "dist/index.js",
"types": "./lib/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"scripts": {
"test": "jest --verbose",
"dev": "nodemon --exec ts-node src/index.ts",
"prebuild": "rm -rf ./dist",
"build": "tsc"
},
"keywords": [
"photo",
"cdn",
"image"
],
"author": "Adam Azad <adam@adamazad.com>",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.8",
"@types/sharp": "^0.25.1",
"express": "^4.17.1",
"file-type": "^15.0.1",
"mime": "^2.4.6",
"object-hash": "^2.0.3",
"sharp": "^0.26.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.10.3",
"@types/object-hash": "^1.3.3",
"@types/redis": "^2.8.27",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}