-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 KB
/
package.json
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": "api-image-processing",
"version": "1.0.0",
"description": "An API for image processing (resize, rotate, flip, flop and convert the image format)",
"main": "index.js",
"scripts": {
"clean": "rimraf dist && rimraf logs && rimraf assets/images/thumb",
"prettier-check": "prettier --config .prettierrc 'src/**/*.ts' --check",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"test": "npm run build && jasmine && npm run clean",
"build": "npm run clean && npm run prettier && npx tsc",
"start": "npm run build && node dist/.",
"dev": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katerina-tziala/api-image-processing.git"
},
"keywords": [
"API",
"image-processing",
"node",
"typescript",
"sharp"
],
"author": "Katerina Tziala",
"license": "ISC",
"bugs": {
"url": "https://github.com/katerina-tziala/api-image-processing/issues"
},
"homepage": "https://github.com/katerina-tziala/api-image-processing#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.1",
"@types/node": "^16.11.6",
"@types/sharp": "^0.30.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"sharp": "^0.30.6",
"supertest": "^6.1.6"
}
}