-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@axellero/eslint",
"private": true,
"description": "ESLint configurations and code-style guidelines",
"keywords": [
"config",
"eslint",
"eslint-config",
"axellero",
"styleguide"
],
"homepage": "https://github.com/axellero-io/eslint#readme",
"bugs": {
"url": "https://github.com/axellero-io/eslint/issues",
"email": "npm@axellero.io"
},
"repository": {
"type": "git",
"url": "https://github.com/axellero-io/eslint.git"
},
"license": "MIT",
"author": "Axellero <opensource@axellero.io>",
"workspaces": [
"packages/*"
],
"scripts": {
"clear": "yarn rimraf -g packages/*/lib",
"compile": "yarn rollup -c",
"postinstall": "yarn husky install",
"lint": "yarn lint:files packages",
"lint:files": "yarn eslint --cache --max-warnings 0",
"start": "yarn compile -w",
"test": "yarn packages/tests test"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"packages/**/*.[jt]s?(x)": [
"yarn lint:files"
]
},
"eslintConfig": {
"extends": [
"@axellero"
]
},
"eslintIgnore": [
"packages/*/lib",
".pnp.loader.mjs",
".pnp.cjs",
".yarn"
],
"devDependencies": {
"@axellero/eslint-config": "*",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@rollup/plugin-typescript": "^11.1.2",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"esbuild": "^0.18.17",
"eslint": "^8.46.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lerna": "^7.1.4",
"lint-staged": "^13.2.3",
"nx": "^16.6.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.27.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-includepaths": "^0.2.4",
"typescript": "5.1.6",
"typescript-transform-paths": "^3.4.6"
},
"packageManager": "yarn@3.6.1"
}