-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.91 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.91 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
55
56
57
58
59
60
61
62
{
"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.ts",
"test:integration": "npm test -- --watch -c jest-integration-config.ts",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArthurEnrique15/clean-node-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArthurEnrique15/clean-node-api/issues"
},
"homepage": "https://github.com/ArthurEnrique15/clean-node-api#readme",
"devDependencies": {
"@shelf/jest-mongodb": "^2.2.1",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"git-commit-msg-linter": "^4.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"prettier": "^2.7.1",
"sucrase": "^3.20.3",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.6.2"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.3",
"fast-glob": "^3.2.11",
"mongodb": "^4.4.1",
"validator": "^13.7.0"
}
}