-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "imgresize",
"version": "1.0.0",
"description": "An image resizing API",
"main": "index.js",
"scripts": {
"cpimgs": "copyfiles -u 1 src/imgs/* dist/" ,
"prettier": "prettier --config .prettierrc.json src/**/*.ts --write",
"lint": "eslint src/**/*.ts",
"build": "npx tsc && npm run cpimgs",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine",
"start": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ibrahim-Soltan/imgResize.git"
},
"author": "Ibrahim Soltan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ibrahim-Soltan/imgResize/issues"
},
"homepage": "https://github.com/Ibrahim-Soltan/imgResize#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.3",
"@types/node": "^17.0.17",
"@types/sharp": "^0.29.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-prettier": "^4.0.0",
"jasmine": "^4.0.2",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.2.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"express": "^4.17.2",
"sharp": "^0.30.1"
}
}