-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.77 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "ioasys_test-backend",
"version": "1.0.0",
"description": "Estes documento README tem como objetivo fornecer as informações necessárias para realização do projeto de avaliação de candidatos.",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=local sucrase-node src/main/server.ts",
"prebuild": "eslint src/** --fix",
"build": "tsc -p .",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand --detectOpenHandles",
"test:v": "jest --passWithNoTests --runInBand --detectOpenHandles",
"test:ci": "npm run test -- --coverage",
"test:ci:v": "npm run test:v -- --coverage",
"test:w": "npm run test -- --watch",
"test:w:ci": "npm run test:ci -- --watch",
"test:w:v": "npm run test:v -- --watch",
"test:u": "npm run test -- --watch -c jest-unit-config.js",
"test:u:ci": "npm run test:u -- --coverage",
"test:u:v": "npm run test:v -- --watch -c jest-unit-config.js",
"test:i": "npm run test -- --watch -c jest-integration-config.js",
"test:i:ci": "npm run test:i -- --coverage",
"test:i:v": "npm run test:v -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leandroluk/ioasys_test-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/leandroluk/ioasys_test-backend/issues"
},
"homepage": "https://github.com/leandroluk/ioasys_test-backend#readme",
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.11",
"@types/faker": "^5.1.6",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.6.5",
"@types/node": "^14.14.25",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"faker": "^5.4.0",
"git-commit-msg-linter": "^3.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"sucrase": "^3.17.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.ts": [
"eslint 'src/**' --fix",
"npm run test:staged"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:ci"
}
},
"dependencies": {
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "3.6.3",
"supertest": "^6.1.3",
"validator": "^13.5.2"
}
}