-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
48
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon ./src/index.ts",
"clean": "rimraf ./build",
"copy": "copyfiles -u 1 src/**/*.jpg build/",
"build": "npm run clean && npm run copy && npx tsc",
"start:prod": "npm run build && node build/index.js",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"format": "prettier --write \"src/**/*.ts\"",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine"
},
"author": "Youssef Ghareb",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jasmine": "^4.3.0",
"@types/morgan": "^1.9.3",
"@types/sharp": "^0.30.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"copyfiles": "^2.4.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jasmine": "^4.3.0",
"jasmine-spec-reporter": "^7.0.0",
"morgan": "^1.10.0",
"sharp": "^0.30.7"
}
}