-
Notifications
You must be signed in to change notification settings - Fork 535
/
Copy pathpackage.json
63 lines (63 loc) · 3.07 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
{
"name": "@fluidframework/eslint-config-fluid",
"version": "5.7.1",
"description": "Shareable ESLint config for the Fluid Framework",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "common/build/eslint-config-fluid"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "index.js",
"scripts": {
"build": "npm run print-config && npm run build:readme && npm run prettier",
"build:readme": "markdown-magic --files \"**/*.md\"",
"cleanup-printed-configs": "node ./scripts/cleanup-printed-configs.js ./printed-configs",
"format": "npm run prettier:fix",
"prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
"prettier:fix": "prettier --write . --cache --ignore-path ../../../.prettierignore",
"print-config": "concurrently \"npm:print-config:*\" && npm run cleanup-printed-configs",
"print-config:default": "eslint --config ./index.js --print-config ./src/file.ts > ./printed-configs/default.json",
"print-config:minimal": "eslint --config ./minimal-deprecated.js --print-config ./src/file.ts > ./printed-configs/minimal.json",
"print-config:react": "eslint --config ./index.js --print-config ./src/file.tsx > ./printed-configs/react.json",
"print-config:recommended": "eslint --config ./recommended.js --print-config ./src/file.ts > ./printed-configs/recommended.json",
"print-config:strict": "eslint --config ./strict.js --print-config ./src/file.ts > ./printed-configs/strict.json",
"print-config:strict-biome": "eslint --config ./strict-biome.js --print-config ./src/file.ts > ./printed-configs/strict-biome.json",
"print-config:test": "eslint --config ./index.js --print-config ./src/test/file.ts > ./printed-configs/test.json",
"test": "echo TODO: add tests"
},
"dependencies": {
"@fluid-internal/eslint-plugin-fluid": "^0.1.4",
"@microsoft/tsdoc": "^0.14.2",
"@rushstack/eslint-patch": "~1.4.0",
"@rushstack/eslint-plugin": "~0.13.1",
"@rushstack/eslint-plugin-security": "~0.7.1",
"@typescript-eslint/eslint-plugin": "~6.7.5",
"@typescript-eslint/parser": "~6.7.5",
"eslint-config-biome": "~1.9.3",
"eslint-config-prettier": "~9.0.0",
"eslint-import-resolver-typescript": "~3.6.3",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "npm:eslint-plugin-i@~2.29.1",
"eslint-plugin-jsdoc": "~46.8.2",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-react": "~7.33.2",
"eslint-plugin-react-hooks": "~4.6.2",
"eslint-plugin-tsdoc": "~0.2.17",
"eslint-plugin-unicorn": "~48.0.1",
"eslint-plugin-unused-imports": "~3.0.0"
},
"devDependencies": {
"@fluid-tools/markdown-magic": "file:../../../tools/markdown-magic",
"@fluidframework/build-common": "^2.0.3",
"concurrently": "^8.2.2",
"eslint": "~8.55.0",
"mocha-multi-reporters": "^1.5.1",
"prettier": "~3.0.3",
"sort-json": "^2.0.1",
"typescript": "~5.1.6"
},
"packageManager": "[email protected]+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a"
}