-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.56 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
{
"name": "processing-images",
"version": "1.0.0",
"description": "This project aims to give you a real-world scenario in which you would read and write to your disk via a Node.js express server rather than a database. The project you create serves two purposes: to prepare you for setting up scalable code and architecture for real-world projects and tie together some of the most popular middleware and utilities found in Node.js projects. This project barely touches the surface of what is possible but will prove your ability to use what you’ve learned in real-world scenarios.",
"main": "",
"scripts": {
"start:server": "nodemon server/index.ts",
"build": "npx tsc",
"lint": "eslint '**/*.ts'",
"prettier": "prettier --config .prettierrc '**/*.ts' --write",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine"
},
"author": "Alaa Yahia",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"sharp": "^0.31.1"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/node": "^18.11.3",
"@types/sharp": "^0.31.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"supertest": "^6.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}