-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.72 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
{
"name": "clean-api",
"version": "1.1.0",
"main": "index.js",
"author": "Lemuel Zara <lemuel.czara@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@shelf/jest-mongodb": "^1.2.3",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.2",
"@types/mongodb": "^3.6.9",
"@types/node": "^14.14.31",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.3",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"scripts": {
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "yarn test --watch -c jest-unit-config.js",
"test:integration": "yarn test --watch -c jest-integration-config.js",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage",
"start": "tsnd --respawn --transpile-only --ignore-watch node_modules src/main/server.ts"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"fast-glob": "^3.2.5",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.4",
"validator": "^13.5.2"
}
}