-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "Image processing API with resize functionality",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jasmine-ts --config=jasmine.json",
"lint": "eslint src/**/*.ts",
"prettier": "prettier --config .prettierrc \"src/**/*.ts\" --write",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jasmine": "^5.1.9",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.13",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"jasmine": "^3.99.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.3.0",
"mocha": "^11.7.2",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"supertest": "^6.3.4",
"ts-node": "^7.0.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"dependencies": {
"express": "^4.18.2",
"sharp": "^0.33.2"
},
"keywords": [],
"author": "",
"license": "ISC"
}