-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "imageprocessingapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"start": "nodemon src/app.ts",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine",
"cleanFix": "npm run prettier && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AbdelrahmanSherf/imageProcessingAPI.git"
},
"keywords": [],
"author": "Abdelrahman Sherif Mostafa",
"license": "ISC",
"bugs": {
"url": "https://github.com/AbdelrahmanSherf/imageProcessingAPI/issues"
},
"homepage": "https://github.com/AbdelrahmanSherf/imageProcessingAPI#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/jasmine": "^3.10.2",
"@types/node": "^17.0.1",
"@types/sharp": "^0.29.4",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"express": "^4.17.2",
"fs-extra": "^10.0.0",
"sharp": "^0.29.3"
}
}