-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
{
"name": "salario-minimo-api",
"version": "1.0.0",
"description": "Essa API retorna os valores dos salários mínimos vigentes no Brasil",
"repository": "https://github.com/diasjoaovitor/salario-minimo.git",
"homepage": "https://github.com/diasjoaovitor/salario-minimo#readme",
"author": "João Vitor <jvitordiass@outlook.com.br>",
"license": "ISC",
"main": "src/app.ts",
"keywords": [
"salario-minimo",
"webscraping",
"api",
"regex"
],
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/app.ts",
"test": "jest",
"test:watch": "jest --watchAll",
"test:ci": "jest --runInBand",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "eslint . --ext js,ts --report-unused-disable-directives --max-warnings 0",
"prepare": "husky"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"git-commit-msg-linter": "^5.0.8",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2",
"module-alias": "^2.2.3",
"scrape-it": "^6.1.2"
}
}