-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
62 lines (62 loc) · 2.26 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
{
"name": "linters-monorepo",
"description": "Linter configs and custom TSLint rules of Tinkoff",
"license": "Apache-2.0",
"scripts": {
"********** Linters": "",
"prettier": "prettier --write '**/*.{js,ts,md,json,html}'",
"prettier:ci": "prettier --check '**/*.{js,ts,md,json,html}'",
"lint": "concurrently 'npm:prettier' 'npm:lint:all'",
"lint:all": "eslint .",
"prelint:ci": "lerna run build:prod --parallel",
"lint:ci": "concurrently 'npm:prettier:ci' 'npm:lint:all'",
"*** Bootstrap": "",
"postinstall": "lerna bootstrap --hoist --ignore-prepublish && husky install",
"********** Build": "",
"build:prod": "lerna run build:prod --parallel",
"********** Test": "",
"test:ci": "jest --no-colors && lerna run test",
"********** Version": "",
"preversion": "lerna run build:prod --parallel",
"version": "lerna version --no-private --conventional-commits --changelog-preset conventionalcommits --yes --ignore-changes '**/package-lock.json'",
"********** Publish": "",
"publish:ci": "lerna publish from-git --yes",
"publish:ci:beta": "lerna publish --dist-tag beta from-git --yes"
},
"author": {
"name": "Tinkoff Team",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Tinkoff/linters.git"
},
"prettier": "./packages/prettier-config/index.js",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@tinkoff/eslint-config": "file:./packages/eslint-config",
"@tinkoff/eslint-plugin": "file:./packages/eslint-plugin",
"@types/eslint": "^7.2.0",
"@types/jest": "^29.5.0",
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"babel-jest": "^29.5.0",
"concurrently": "5.0.1",
"conventional-changelog-conventionalcommits": "^4.2.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.4",
"jest": "^29.5.0",
"lerna": "^4.0.0",
"lint-staged": "^10.0.1",
"prettier": "2.6.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"typescript": "4.3.5"
}
}