-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "image-processing-api",
"version": "0.0.1",
"description": "Image Processing API",
"main": "index.js",
"scripts": {
"prettier": "prettier --config .prettierrc \"src/**/*.ts\" --write",
"lint": "eslint . --ext .ts",
"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/ernesgonzalez33/image-processing-api.git"
},
"author": "Ernesto González",
"license": "ISC",
"bugs": {
"url": "https://github.com/ernesgonzalez33/image-processing-api/issues"
},
"homepage": "https://github.com/ernesgonzalez33/image-processing-api#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^4.0.0",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@types/sharp": "^0.30.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"jasmine": "^4.0.2",
"jasmine-spec-reporter": "^7.0.0",
"supertest": "^6.2.2"
},
"dependencies": {
"express": "^4.17.3",
"sharp": "^0.30.3"
}
}