-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "@superbet/eslint-config",
"version": "1.0.1",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"maintainers": [
"Jurica Kovacevic <jurica.kovacevic@superbet.com>",
"Daniel Kovacs <daniel.kovacs@superbet.com>"
],
"repository": {
"type": "git",
"url": "ssh://github.com/superbet-group/eslint-config.git"
},
"description": "Superbet shared ESLint configuration",
"scripts": {
"test": "npx nx run-many --target=test --all --parallel",
"test:affected": "npx nx affected test --target=test --parallel"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"tag": "latest",
"access": "public"
},
"peerDependencies": {
"eslint": "8.x",
"prettier": "2.x",
"typescript": ">= 4.5"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix"
},
"files": [
"index.js"
],
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@nrwl/cli": "latest",
"@nrwl/tao": "latest",
"@nrwl/workspace": "latest",
"commitlint": "13.1.0",
"eslint": "8.6.0",
"husky": "7.0.1",
"lint-staged": "11.1.1",
"prettier": "2.5.1",
"semantic-release-monorepo": "7.0.5",
"typescript": "4.5.4"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"confusing-browser-globals": "1.0.11"
}
}