-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
package.json
File metadata and controls
60 lines (60 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
54
55
56
57
58
59
60
{
"name": "image_processing_api",
"version": "1.0.0",
"description": "image processing api ",
"main": "index.js",
"scripts": {
"start:dev": "nodemon src/index.ts",
"build": "rm -rf ./dist/* && tsc --build",
"start": "npm run build && node dist/index.js",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine",
"prettier": "prettier src/**/*.ts",
"prettier:fix": "prettier --write src/**/*.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdulashref333/image_processing_api.git"
},
"author": "Abdulrahman Ashraf",
"license": "ISC",
"bugs": {
"url": "https://github.com/abdulashref333/image_processing_api/issues"
},
"homepage": "https://github.com/abdulashref333/image_processing_api#readme",
"dependencies": {
"dotenv": "^14.2.0",
"express": "^4.17.2",
"jasmine": "^4.0.2",
"jasmine-spec-reporter": "^7.0.0",
"memory-cache": "^0.2.0",
"multer": "^1.4.4",
"sharp": "^0.29.3",
"supertest": "^6.2.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.3",
"@types/memory-cache": "^0.2.1",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.9",
"@types/sharp": "^0.29.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "8.7.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"jasmine": "^4.0.2",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"supertest": "^6.2.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}