forked from otaviolemos/twd-clean-architecture-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "twd-clean-architecture-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"dev": "node -r dotenv/config dist/main/server.js",
"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",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@shelf/jest-mongodb": "^2.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/mongodb": "^4.0.6",
"@types/node": "^17.0.17",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"git-commit-msg-linter": "^4.0.7",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.3",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.2",
"module-alias": "^2.2.2",
"mongodb": "^4.3.1",
"nodemailer": "^6.7.2"
},
"_moduleAliases": {
"@": "dist"
}
}