-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.4 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
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "Image processing API that resisez and saves images to user specifications when visiting a URL",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"dev": "nodemon src/index.ts",
"lint": "eslint \"src/**/*.ts\" --fix",
"prettier": "npx prettier --config .prettierrc \"src/**/*.ts\" --write",
"format-fix": "npm run prettier && npm run lint",
"build": "npx tsc --pretty",
"clean": "tsc --build --clean",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine"
},
"author": "astronolt",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.11.17",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"@types/sharp": "^0.31.0",
"jasmine": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"supertest": "^6.3.3"
},
"dependencies": {
"express": "^4.18.2",
"sharp": "^0.31.3"
}
}