forked from AMPATH/ampath-hr-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.31 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@ampath/hapi-hr-backend",
"version": "1.0.0",
"description": "Ampath HR Management and tracking Module backend",
"bugs": "https://github.com/AMPATH/ampath-hr-backend/issues",
"main": "main.ts",
"scripts": {
"build": "NODE_ENV=production webpack",
"start": "nodemon",
"test": "jest",
"test:watch": "jest --watchAll --coverage",
"lint": "eslint src --ext ts",
"prettier": "prettier --config .prettierrc.json --write \"src/**/*.ts\""
},
"lint-staged": {
"*.ts": "prettier --config .prettierrc.json --write \"src/**/*.ts\""
},
"keywords": [
"boilerplate",
"hapi.js",
"typescript",
"nomado",
"docker",
"docker swarm",
"gitlab"
],
"author": "Ampath Dev team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AMPATH/ampath-hr-backend/issues"
},
"dependencies": {
"@hapi/boom": "^9.0.0",
"@hapi/hapi": "^20.1.5",
"@hapi/inert": "^6.0.4",
"@hapi/joi": "^17.0.2",
"@hapi/jwt": "^2.1.0",
"@hapi/podium": "^4.0.0",
"@hapi/vision": "^6.1.0",
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"fs": "0.0.1-security",
"hapi-swagger": "^14.2.4",
"hapi-swaggered": "^3.1.0",
"hapi-swaggered-ui": "^3.0.2",
"install": "^0.13.0",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"npm": "^6.14.6"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/hapi__hapi": "^19.0.0",
"@types/hapi__podium": "^3.4.0",
"@types/jest": "^24.9.0",
"@types/node": "^13.1.8",
"@types/webpack": "^4.41.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"concurrently": "^5.0.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.2",
"jest": "^24.9.0",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.2",
"prettier": "2.4.1",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": ">= 12",
"yarn": "use npm to install dependencies"
}
}