-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "loans-ts",
"version": "1.0.0",
"description": "Back-End BR loans challenge solution.",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"main": "src/index.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"start": "npm run build && node --require dotenv/config dist/index.js",
"start:dev": "ts-node-dev --require dotenv/config src/index.ts | pino-pretty",
"test": "jest",
"prepare": "[ ${CI} ] || husky"
},
"repository": {
"type": "git",
"url": "https://github.com/HenriqueSilverio/Loans.TypeScript.git"
},
"author": "Henrique Silvério",
"license": "GPL-3.0",
"dependencies": {
"express": "^4.21.2",
"helmet": "^8.0.0",
"pino-http": "^10.3.0",
"require-env": "^0.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@tsconfig/node22": "^22.0.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.4",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.18.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"pino-pretty": "^13.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "~5.2.2"
}
}