-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.92 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
86
87
88
89
90
91
{
"name": "hr-microservice",
"version": "1.0.0",
"private": true,
"description": "A microservice for Human Resources",
"main": "src/index.ts",
"author": "Daniel Machado",
"license": "MIT",
"scripts": {
"start": "rimraf ./build && tsc",
"dev": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register --no-notify --exit-child src/index.ts",
"build": "cross-env NODE_ENV=production ttsc --P ./tsconfig.json",
"test:watch": "cross-env NODE_ENV=test jest src/ --passWithNoTests",
"lint": "eslint --ext js,ts src",
"lint:fix": "eslint --ext js,ts src --fix",
"commit": "git-cz",
"migrate:init": "npx prisma migrate dev --name init",
"docker:up": "docker-compose -f docker-compose.test.yml up -d",
"docker:down": "docker-compose down"
},
"repository": {
"type": "git",
"url": "https://github.com//hr-microservice"
},
"dependencies": {
"@prisma/client": "^2.21.2",
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-openapi-validator": "^3.16.1",
"helmet": "^4.5.0",
"http-errors": "^1.8.0",
"make-promises-safe": "^5.1.0",
"moment-timezone": "^0.5.33",
"morgan": "^1.10.0",
"prisma-client": "^0.0.0",
"promise-all-properties": "^3.0.2",
"ramda": "^0.27.1",
"supertest": "^6.1.3",
"swagger-ui-express": "^4.1.6",
"ts-jest": "^27.0.0-next.12",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1",
"typescript-transform-paths": "^2.2.4",
"zod": "^3.0.0-alpha.33"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "7.2.1",
"@semantic-release/npm": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.22",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.41",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"commitizen": "^4.2.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"git-cz": "^4.7.6",
"husky": "4.3.8",
"jest": "^27.0.6",
"nodemon": "^2.0.7",
"prisma": "^2.27.0",
"semantic-release": "^17.4.2",
"semantic-release-github-pr": "^6.0.1",
"source-map-support": "^0.5.19",
"sucrase": "^3.18.1",
"ttypescript": "^1.5.12",
"typescript": "4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}