-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (41 loc) · 1.24 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
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine",
"start": "nodemon src/index.ts",
"lint": "eslint . --ext .ts --fix",
"lint:fix": "eslint --fix",
"prettify": "prettier --config .prettierrc.json \"src\" --write"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.3",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.19",
"@types/sharp": "^0.29.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5" ,
"jasmine": "^4.0.2",
"jasmine-spec-reporter": "^7.0.0" ,
"supertest": "^6.2.2"
},
"dependencies": {
"express": "^4.17.3",
"sharp": "^0.30.1"
}
}