-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.82 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "Api to process images",
"main": "index.js",
"scripts": {
"test": "npm run build && npm run jasmine",
"build": "npx tsc",
"start": "npx nodemon src/app/index.ts",
"jasmine": "jasmine",
"prettier": "prettier --config .prettierrc src/**/*.ts --write",
"eslint": "npx eslint src/**/*.ts",
"husky": "husky install"
},
"_moduleAliases": {
"@app": "./dist/app",
"@tests": "./dist/tests",
"@routes": "./dist/app/routes",
"@utils": "./dist/app/utils"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Richie-Nature/image-processing-api.git"
},
"keywords": [
"Node",
"Filesystem",
"Sharp",
"Udacity"
],
"author": "Imoh Obot",
"license": "MIT",
"bugs": {
"url": "https://github.com/Richie-Nature/image-processing-api/issues"
},
"homepage": "https://github.com/Richie-Nature/image-processing-api#readme",
"devDependencies": {
"@types/express": "^4.17.12",
"@types/jasmine": "^3.7.6",
"@types/node": "^15.12.0",
"@types/sharp": "^0.28.3",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.2"
},
"dependencies": {
"express": "^4.17.1",
"jasmine": "^3.7.0",
"jasmine-spec-reporter": "^7.0.0",
"module-alias": "^2.2.2",
"sharp": "^0.28.3",
"supertest": "^6.1.3"
}
}