-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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
{
"name": "clean-archicteture-survey",
"description": "survey manager using clean archicteture to handle and create surveys to the community",
"version": "1.0.0",
"main": "index.js",
"author": "Bruno Afonso <[email protected]>",
"license": "MIT",
"scripts": {
"test": "dotenv -e .env -- jest",
"start:dev": "dotenv -e .env -- ts-node-dev --no-notify --transpile-only src/main/index.ts"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"error-stack-parser": "^2.0.6",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"module-alias": "^2.2.2",
"mongodb": "^3.6.2",
"supertest": "^5.0.0",
"ts-transformer-keys": "^0.4.2",
"validator": "^13.1.17"
},
"devDependencies": {
"@shelf/jest-mongodb": "1.2.1",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.8",
"@types/hapi__joi": "^17.1.6",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^26.0.14",
"@types/module-alias": "^2.0.0",
"@types/mongodb": "^3.5.27",
"@types/node": "^14.11.2",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.3",
"git-commit-msg-linter": "^2.7.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-html-reporters": "^2.0.4",
"lint-staged": "^10.4.0",
"prettier": "^2.0.5",
"ts-jest": "^26.4.0",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix -f html -o lint.html",
"git add"
]
}
}