forked from tylerbutler/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.37 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
{
"name": "@fluidframework/eslint-config-fluid",
"version": "2.0.0",
"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",
"cleanup-printed-configs": "node ./scripts/cleanup-printed-configs.js ./printed-configs",
"format": "npm run prettier:fix",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"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.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:test": "eslint --config ./index.js --print-config ./src/test/file.ts > ./printed-configs/test.json"
},
"dependencies": {
"@rushstack/eslint-patch": "~1.1.0",
"@rushstack/eslint-plugin": "~0.8.5",
"@rushstack/eslint-plugin-security": "~0.2.5",
"@typescript-eslint/eslint-plugin": "~5.9.0",
"@typescript-eslint/parser": "~5.9.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-jsdoc": "~39.3.0",
"eslint-plugin-promise": "~6.0.0",
"eslint-plugin-react": "~7.28.0",
"eslint-plugin-react-hooks": "~4.6.0",
"eslint-plugin-tsdoc": "~0.2.14",
"eslint-plugin-unicorn": "~40.0.0",
"eslint-plugin-unused-imports": "~2.0.0"
},
"devDependencies": {
"@fluidframework/build-common": "^1.1.0",
"concurrently": "^6.2.0",
"eslint": "~8.6.0",
"node-jq": "^2.3.3",
"prettier": "~2.6.2",
"sort-json": "^2.0.1",
"typescript": "~4.5.5"
}
}