-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "imageprocessingapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"express": "^4.18.1",
"sharp": "^0.30.6"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^4.0.3",
"@types/node": "^18.0.0",
"@types/prettier": "^2.6.3",
"@types/sharp": "^0.30.4",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jasmine": "^4.2.1",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.16",
"prettier": "2.7.1",
"supertest": "^6.2.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"scripts": {
"lint": "eslint . --ext .ts",
"prettier": "prettier --config .prettierrc.json src/**/*.ts --write",
"check": "npm run prettier && npm run lint",
"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/Sayton7/ImageProcessingAPI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sayton7/ImageProcessingAPI/issues"
},
"homepage": "https://github.com/Sayton7/ImageProcessingAPI#readme"
}