-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "img-processing-api",
"version": "1.0.0",
"description": "Udacity Img Processing API Application",
"main": "index.js",
"scripts": {
"prettier": "eslint . --ext .ts --fix",
"lint": "eslint . --ext .ts",
"build": "npx tsc",
"jasmine": "jasmine",
"start": "nodemon src/index.ts",
"test": "npm run build && npm run jasmine"
},
"keywords": [
"udacity",
"first project"
],
"author": "Mo Alsehli",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^4.0.3",
"@types/node": "^17.0.25",
"@types/sharp": "^0.30.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.15",
"prettier": "^1.19.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"express": "^4.17.3",
"jasmine": "^4.1.0",
"node-cache": "^5.1.2",
"sharp": "^0.30.4",
"supertest": "^6.2.2"
}
}