-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 4 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
{
"name": "@babbel/eslint-config",
"version": "2.2.0",
"author": "Eric L. Goldstein <egoldstein@babbel.com>",
"description": "Hierarchical ESLint configuration collection that intends to be simple to use, layered, and shared with others",
"keywords": [
"eslint",
"eslintconfig"
],
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=22.11.0"
},
"packageManager": "bun@1.1.27",
"exports": {
".": "./lib/eslintBaseConfig.json",
"./browser": "./lib/eslintBrowserConfig.json",
"./bun": "./lib/eslintBunConfig.json",
"./isomorphic": "./lib/eslintIsomorphicConfig.json",
"./jest": "./lib/eslintJestConfig.json",
"./jsdoc": "./lib/eslintJsdocConfig.json",
"./jsdoc-typescript": "./lib/eslintJsdocTypescriptConfig.json",
"./node": "./lib/eslintNodeConfig.json",
"./playwright": "./lib/eslintPlaywrightConfig.json",
"./preact": "./lib/eslintPreactConfig.json",
"./preact-typescript": "./lib/eslintPreactTypescriptConfig.json",
"./react": "./lib/eslintReactConfig.json",
"./react-typescript": "./lib/eslintReactTypescriptConfig.json",
"./typescript": "./lib/eslintTypescriptConfig.json"
},
"files": [
"lib/"
],
"scripts": {
"check:environment": "bun run --silent check:environment:symlinks && bun run --silent check:environment:versions",
"check:environment:symlinks": "check-environment-symlinks",
"check:environment:versions": "check-environment-versions",
"check:formatting": "prettier --check --no-editorconfig .",
"check:lint-conflicts": "eslint-config-prettier ./lib/eslintBaseConfig.json",
"delete:node-modules": "rm -rf node_modules",
"delete:package-lock": "rm -f bun.lockb",
"format:code": "prettier --write --no-editorconfig .",
"install:bun:expected-version": "bun --print '(await import(Bun.env.npm_package_json)).packageManager.split(\"@\")[1]' | (read BUN_VERSION; if [ $BUN_VERSION == `bun --version` ]; then echo Bun version $BUN_VERSION is already installed; else echo Installing Bun version $BUN_VERSION... && curl -fsSL https://bun.sh/install | bash -s \"bun-v$BUN_VERSION\"; fi)",
"list:eslint:disable-directives": "rg '/(/|\\*+)[ \\t]*eslint-disable[^*]*(\\*+/)?'",
"list:todo-comments": "rg --only-matching '(TODO|FIXME)([\t ]+\\[[^\\]]+\\])?:[\\w\\s!\"#$%&'\\''()+,./:;<=>?@\\^_`{|}~-]+'",
"reinstall": "bun run --silent delete:package-lock && bun run --silent delete:node-modules && bun install",
"reinstall:use-lock-file": "bun run --silent delete:node-modules && bun install --frozen-lockfile",
"test": "eslint --max-warnings 0 --report-unused-disable-directives test/**/*.{js,jsx,mjs,ts,tsx}"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-compat": "6.0.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jest-dom": "5.4.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "17.13.1",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-plugin-playwright": "2.0.1",
"eslint-plugin-react-compiler": "19.0.0-beta-a7bf2bd-20241110",
"eslint-plugin-react-perf": "3.3.3",
"eslint-plugin-regexp": "2.7.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-unicorn": "56.0.0"
},
"devDependencies": {
"@mangs/bun-utils": "2.33.2",
"@playwright/test": "1.48.2",
"@types/aws-lambda": "8.10.145",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"eslint": "8.57.1",
"jest": "29.7.0",
"preact": "10.24.3",
"prettier": "3.3.3",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.6.3"
},
"peerDependencies": {
"eslint": "^8.56.0"
}
}