-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "image-processing-api",
"version": "1.0.2",
"description": "",
"main": "./src/index.ts",
"scripts": {
"build": "npx tsc",
"start": "nodemon ./src/index.ts",
"prettier": "npx prettier --write .",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine",
"lint-check": "eslint ./src",
"lint-fix": "eslint ./src --fix"
},
"author": "Abdelrrahman Elhaddad",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"sharp": "^0.31.2"
},
"devDependencies": {
"@types/eslint": "^8.4.10",
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/node": "^18.11.9",
"@types/nodemon": "^1.19.2",
"@types/prettier": "^2.7.1",
"@types/sharp": "^0.31.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"jasmine": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-supertest": "^1.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"supertest": "^6.3.1",
"typescript": "^4.9.3"
}
}