-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"build": "node preprocess.js && tsc -p tsconfig.build.json && node strip-extensions.js && node preprocess.js restore",
"start": "node build/index.js",
"dev": "nodemon src/index.ts",
"test": "node --loader ts-node/esm node_modules/jasmine/bin/jasmine.js",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^5.2.1",
"sharp": "^0.34.5"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jasmine": "^6.0.0",
"@types/node": "^25.5.0",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jasmine": "^6.1.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
}
}