-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.8 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
49
50
51
52
53
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "An API that can be used in two different ways. As a simple placeholder API, the first allows to place images into the frontend with the size set via URL parameters (and optional additional stylization) for rapid prototyping. The second use case is as a library to serve properly scaled versions of images to the front end to reduce page load size.",
"main": "index.js",
"scripts": {
"prettier": "prettier --config .prettierrc src/**/*.ts -w",
"lint": "eslint src/*.ts",
"build": "npx tsc",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine",
"start": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivienogoun/image-processing-api.git"
},
"author": "vivien",
"license": "ISC",
"bugs": {
"url": "https://github.com/vivienogoun/image-processing-api/issues"
},
"homepage": "https://github.com/vivienogoun/image-processing-api#readme",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.11.18",
"@types/sharp": "^0.31.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"ejs": "^3.1.8",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"isomorphic-fetch": "^3.0.0",
"jasmine": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"lru-cache": "^7.14.1",
"node-cache": "^5.1.2",
"path": "^0.12.7",
"sharp": "^0.31.3",
"supertest": "^6.3.3"
}
}