-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"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/app.ts",
"lint": "eslint . --ext .ts",
"prettier": "prettier --config .prettierrc.json src/**/*.ts --write"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.21.2",
"sharp": "^0.32.6"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^4.0.3",
"@types/node": "^18.0.3",
"@types/sharp": "^0.30.4",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"jasmine": "^4.2.1",
"jasmine-spec-reporter": "^7.0.0",
"supertest": "^6.2.4"
}
}