-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "company-microservice",
"version": "1.0.0",
"main": "server.ts",
"repository": "https://github.com/VenturaHR-Project/company-microservice.git",
"author": "Matheus Evangelista <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node dist/server.js",
"dev": "tsnd --transpile-only --respawn --ignore-watch node_modules src/server.ts --no-notify",
"test": "jest"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"devDependencies": {
"@swc/core": "^1.2.163",
"@swc/jest": "^0.2.20",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"commitizen": "4.2.1",
"cz-conventional-changelog": "3.3.0",
"husky": "^4.3.0",
"init": "0.1.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"mongoose": "^5.10.5"
}
}