-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
49
50
51
52
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "Udacity Image Processing API project.",
"main": "src/server.ts",
"repository": "https://github.com/skb1129/image-processing-api",
"scripts": {
"build": "tsc",
"coverage": "jest --coverage",
"dev": "ts-node src/server.ts",
"prestart": "npm run build",
"start": "node dist/server.js",
"test": "jest"
},
"author": "Surya Kant Bansal <[email protected]>",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"sharp": "^0.27.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/sharp": "^0.27.0",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.{js,ts,json}": [
"eslint .",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
}
}