-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.12 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "movies-microservices",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"d02": "nx serve d02 --port=7777",
"f02": "nx serve f02 --port=7778",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"precise-commits": "precise-commits",
"precommit": "npm run precise-commits"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "git-precommit-checks && precise-commits"
}
},
"git-precommit-checks": {
"rules": [
{
"filter": "\\.js$",
"nonBlocking": "true",
"message": "You’ve got leftover `console.log`",
"regex": "console\\.log"
},
{
"message": "You’ve got leftover conflict markers",
"regex": "/^[<>|=]{4,}/m"
},
{
"message": "You have unfinished devs",
"nonBlocking": "true",
"regex": "(?:FIXME|TODO)"
}
]
},
"private": true,
"dependencies": {
"@nestjs/common": "^6.2.4",
"@nestjs/core": "^6.2.4",
"@nestjs/graphql": "^6.5.3",
"@nestjs/jwt": "^6.1.1",
"@nestjs/passport": "^6.1.1",
"@nestjs/platform-express": "^6.2.4",
"graphql": "^14.5.8",
"graphql-tools": "^4.0.6",
"reflect-metadata": "^0.1.12",
"@nestjs/typeorm": "^6.2.0",
"apollo-server-express": "^2.9.13",
"@nestjsx/crud-typeorm": "^4.2.0",
"mysql": "^2.17.1",
"node-fetch": "^2.6.0",
"pg": "^7.14.0",
"typeorm": "^0.2.21"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@nestjs/schematics": "^6.3.0",
"@nestjs/testing": "^6.2.4",
"@nrwl/angular": "^8.9.0",
"@nrwl/eslint-plugin-nx": "8.6.0",
"@nrwl/jest": "8.6.0",
"@nrwl/nest": "^8.9.0",
"@nrwl/node": "8.6.0",
"@nrwl/workspace": "8.6.0",
"@types/jest": "24.0.9",
"@types/node": "~8.9.4",
"@types/passport-local": "^1.0.33",
"@typescript-eslint/eslint-plugin": "2.0.0-alpha.4",
"@typescript-eslint/parser": "2.0.0-alpha.4",
"dotenv": "^6.2.0",
"eslint": "6.1.0",
"eslint-config-prettier": "6.0.0",
"git-precommit-checks": "^2.3.4",
"graphql": "^14.5.8",
"husky": "^3.0.9",
"jest": "24.1.0",
"nodemon": "^2.0.1",
"precise-commits": "^1.0.2",
"prettier": "1.18.2",
"ts-jest": "24.0.0",
"ts-node": "^7.0.1",
"tslint": "~5.11.0",
"typescript": "~3.4.5",
"webpack-merge": "^4.2.2"
}
}