-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2 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
{
"name": "employee-records-microservice",
"version": "1.0.0",
"description": "A microservice for managing employee records",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"test:cover": "cross-env NODE_ENV=test jest --coverage",
"test:ci": "cross-env NODE_ENV=test jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint \"src/**/*.js\"",
"lint:fix": "eslint --fix \"src/**/*.js\"",
"build": "babel src --out-dir dist --delete-dir-on-start --copy-files --ignore src/**/temp_models",
"dev": "cross-env DEBUG=log NODE_ENV=development nodemon --exec babel-node ./src/index.js",
"start": "cross-env DEBUG=log NODE_ENV=production node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hngi/fury-backend-note.git"
},
"keywords": [
"HR",
"employee",
"records"
],
"author": "Team-Fury HNGi7",
"license": "ISC",
"bugs": {
"url": "https://github.com/hngi/fury-backend-note/issues"
},
"homepage": "https://github.com/hngi/fury-backend-note#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"config": "^3.3.1",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"custom-env": "^2.0.1",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"pgtools": "^0.3.0",
"sequelize": "^5.21.12",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-jest": "^26.0.1",
"coveralls": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
}
}