generated from mahkassem/Express-TS-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "image-processing",
"version": "1.0.0",
"description": "Image Processing API",
"main": "build/app.js",
"scripts": {
"prestart": "npm run build",
"start": "node build/app.js",
"lint": "eslint --ext .ts src",
"dev": "nodemon src/app.ts --watch",
"prettier": "npx prettier --write ./src/**/*.ts",
"build": "npx tsc",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine"
},
"author": "Mahmoud Kassem",
"license": "ISC",
"devDependencies": {
"@types/apicache": "^1.6.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.2",
"@types/node": "^16.11.10",
"@types/sharp": "^0.29.4",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.15",
"prettier": "2.5.0",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"apicache": "^1.6.3",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.17.1",
"fs": "^0.0.1-security",
"helmet": "^5.0.1",
"sharp": "^0.29.3"
}
}