-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
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_app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prettier": "prettier --config .prettierrc --write ./src/**/*.ts",
"lint": "eslint \"src/**/*.ts\" ",
"build": "npx tsc",
"jasmine": "jasmine",
"test": "npm run build & npm run jasmine",
"start": "nodemon src/server.ts",
"imgtest": "npm run build & node build/utilities/image.js"
},
"author": "Aly",
"license": "ISC",
"dependencies": {
"express": "^4.18.1",
"jasmine": "^4.3.0",
"jasmine-spec-reporter": "^7.0.0",
"sharp": "^0.30.7"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^4.0.3",
"@types/sharp": "^0.30.5",
"@types/supertest": "^2.0.12",
"@types/typescript": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"node-ts": "^5.1.2",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}