-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.75 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.75 KB
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
{
"name": "desafio-dev-jr-pl",
"version": "1.0.0",
"description": "Bem vindo(a)! Esse desafio tem como objetivo avaliar a capacidade do candidato de construir uma API seguindo as melhores práticas e padrões de desenvolvimento.",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test:unit": "mocha -r ts-node/register src/tests/unit/**/*.test.ts --exit -t 60000",
"compose:up": "docker-compose up --build -d",
"compose:down": "docker-compose down --rmi local --volumes --remove-orphans"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/dev-luizf/desafio-dev-jr-pl.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/dev-luizf/desafio-dev-jr-pl/issues"
},
"homepage": "https://gitlab.com/dev-luizf/desafio-dev-jr-pl#readme",
"dependencies": {
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"joi": "^17.6.0",
"mongoose": "^6.3.1"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-editorconfig": "^3.2.0",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-sonarjs": "^0.13.0",
"git-commit-msg-linter": "^4.1.1",
"mocha": "^9.2.2",
"sinon": "^13.0.2",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
}
}