-
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.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 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": "npm",
"version": "1.0.0",
"description": "image processing API project for Udacity Nanodegree",
"main": "index.js",
"scripts": {
"prettier": "prettier --config .prettierrc src/**/*.ts --write",
"lint": "eslint src/**/*.ts ",
"build": "npx tsc",
"test": "npm run build && npm run jasmine",
"jasmine": "jasmine",
"start": "nodemon src/index.ts"
},
"author": "HaneenAlnuwaysir",
"license": "ISC",
"devDependencies": {
"@types/eslint": "^8.44.2",
"@types/express": "^4.17.17",
"@types/jasmine": "^4.3.5",
"@types/node": "^20.5.0",
"@types/sharp": "^0.32.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"ts-node": "^10.9.1"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"jasmine": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"sharp": "^0.32.5",
"supertest": "^6.3.3",
"typescript": "^5.1.6"
}
}