-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.84 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
{
"name": "clean-node-api",
"version": "1.1.0",
"description": "Treinamento do curso do professor Rodrigo Manguinho, criação de uma API completa com Login, Cadastro, Criação de enquetes, listagem de enquetes, responder uma enquete e resultado da enquete, utilizando TDD, Clean Architecture, Design Patterns e SOLID",
"main": "index.js",
"scripts": {
"dev": "sucrase-node src/main/server.ts",
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"prepare": "husky install"
},
"author": "Yasmin Lopes",
"license": "ISC",
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.7",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.3",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.4.5",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.9.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.45.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"git-commit-msg-linter": "^5.0.4",
"husky": "^8.0.0",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^5.7.0",
"validator": "^13.11.0"
}
}