-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"name": "clean-node-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "sucrase-node src/main/server.ts",
"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"
},
"keywords": [],
"author": "Thyago Vinicius Camilo Cunha <thyago.vccunha@loosername.dev>",
"license": "MIT",
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.1",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.8",
"@types/mongodb": "^3.5.25",
"@types/node": "^14.0.27",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"eslint": "^7.6.0",
"eslint-config-standard-with-typescript": "^16.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"git-commit-msg-linter": "^2.4.4",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"sucrase": "^3.15.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"dependencies": {
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"fast-glob": "^3.2.4",
"mongodb": "^3.6.0",
"validator": "^13.1.1"
}
}