-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.31 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
67
68
69
{
"name": "node-starter",
"version": "1.0.0",
"description": "NodeJs application with TDD DDD Clean Architecture",
"main": "index.js",
"repository": "https://github.com:KalleoPinheiro/node-starter",
"author": "Kalléo Pinheiro <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn prebuild; tsc",
"prebuild": "rm -rf ./node_modules ./dist; yarn cache clean; yarn; yarn audit --fix",
"format": "prettier 'src/**/*.ts' --write --ignore-unknown",
"lint": "eslint . --ext .ts",
"start": "node dist/bin/server.js",
"start:dev": "ts-node-dev -r tsconfig-paths/register --respawn --inspect --transpile-only --no-notify --ignore-watch node_modules ./src/main/server.ts",
"test": "jest --config '.jestrc.json' --passWithNoTests --silent --noStackTrace --runInBand --bail",
"test:dev": "yarn test --watch",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --no-cache --coverage",
"commit": "git-cz"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/helmet": "^0.0.48",
"@types/jest": "^26.0.10",
"@types/node": "^14.11.2",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-standard": "^4.0.1",
"git-cz": "^4.7.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.2"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"supertest": "^5.0.0",
"winston": "^3.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}