-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.49 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
{
"private": true,
"scripts": {
"commit": "git-cz",
"format": "prettier --write '*.{js,yml,yaml,json,graphql}' '{frontend,backend,scripts}/**/*.{js,ts,tsx,yml,yaml,json,graphql}'",
"lint": "tslint --project tsconfig.json -c tslint.json -t codeFrame {frontend,backend,scripts}/**/*.ts{,x}",
"typecheck:watch": "tsc --watch --noEmit",
"typecheck": "NODE_OPTIONS=--max_old_space_size=4096 tsc --noEmit",
"test": "yarn jest",
"coverage:ci": "yarn codecov",
"compile": "lerna run compile",
"site:dev": "yarn workspace @site/app dev",
"sso:dev": "yarn workspace @sso/app dev",
"account:dev": "yarn workspace @account/app dev",
"admin:dev": "yarn workspace @admin/app dev",
"mailer:templates:dev": "yarn workspace @mailer/app dev",
"mailer:service:dev": "yarn workspace @services/mailer dev",
"public-gateway:dev": "yarn workspace @public-gateway/app dev",
"private-gateway:dev": "yarn workspace @private-gateway/app dev"
},
"devDependencies": {
"@commitlint/cli": "8.0.0",
"@commitlint/config-conventional": "8.0.0",
"@commitlint/config-lerna-scopes": "8.0.0",
"@monstrs/commitlint-codebuild-cli": "0.1.17",
"@monstrs/github-checks-cli": "1.2.0",
"@monstrs/github-checks-formatter-commitlint": "1.1.4",
"@monstrs/github-checks-formatter-jest": "1.1.4",
"@monstrs/github-checks-formatter-tsc": "1.1.4",
"@monstrs/github-checks-formatter-tslint": "1.2.0",
"babel-eslint": "10.0.2",
"codecov": "3.8.3",
"commitizen": "3.1.1",
"concurrently": "4.1.0",
"cz-conventional-changelog": "2.1.0",
"cz-lerna-changelog": "2.0.2",
"eslint": "6.0.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "5.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"husky": "2.4.1",
"jest": "24.8.0",
"lerna": "3.15.0",
"lint-staged": "8.2.1",
"prettier": "1.18.2",
"ts-jest": "24.0.2",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0"
},
"workspaces": [
"frontend/**/*",
"backend/**/*",
"scripts/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn format",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}