-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.66 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
53
54
55
56
57
58
59
60
61
62
{
"name": "job-portal-backend",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"engines": {
"npm": ">=6.14.15",
"node": ">=14.18.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahamedali95/job-portal-backend.git"
},
"author": "Ahamed Abbas",
"license": "./LICENSE.txt",
"bugs": {
"url": "https://github.com/ahamedali95/job-portal-backend/issues"
},
"type": "module",
"homepage": "https://github.com/ahamedali95/job-portal-backend",
"scripts": {
"generate:doc": "typedoc src",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test:watch": "jest --watchAll",
"test": "jest --collectCoverage",
"start": "tsc-watch --onSuccess \"node --experimental-modules --es-module-specifier-resolution=node ./build/src/index.js\"",
"build:prod": "tsc",
"deploy:dev": "./release.sh",
"postinstall": "npm run build:prod"
},
"pre-push": [
"lint",
"build:prod"
],
"dependencies": {
"@types/swagger-ui-express": "^4.1.3",
"axios": "^0.24.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.2.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.4.1",
"eslint-plugin-jest": "^24.4.0",
"firebase": "^9.5.0",
"firebase-tools": "^9.23.0",
"jest": "^27.0.6",
"pre-push": "^0.1.1",
"ts-node": "^10.4.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.5.2"
}
}