-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.6 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-ts-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/reno/clean-ts-api.git",
"author": "Renan Modenese <[email protected]>",
"license": "MIT",
"devDependencies": {
"@shelf/jest-mongodb": "^3.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongodb": "^4.0.7",
"@types/node": "^18.0.0",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"add": "^2.0.6",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"git-commit-msg-linter": "^4.1.3",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": "^13.0.3",
"sucrase": "^3.22.0",
"supertest": "^6.2.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4"
},
"scripts": {
"start": "sucrase-node src/main/server.ts",
"test": "jest --watch --silent --noStackTrace --runInBand",
"test:verbose": "jest --watch",
"test:unit": "yarn test -c jest-unit-config.ts",
"test:integration": "yarn test -c jest-integration-config.ts",
"test:staged": "yarn test --passWithNoTests --findRelatedTests",
"test:ci": "yarn test --coverage"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.18.1",
"fast-glob": "^3.2.11",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.7.0",
"validator": "^13.7.0"
}
}