forked from prettier/eslint-config-prettier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.47 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
{
"private": true,
"scripts": {
"prettier": "prettier --write .",
"test:lint": "eslint . && prettier --check .",
"test:lint-verify-fail": "eslint \"test-lint/*.{js,ts,vue}\" --config .eslintrc.base.js --format json",
"test:lint-rules": "eslint index.js --config test-config/.eslintrc.js --format json",
"test:deprecated": "eslint-find-rules --deprecated index.js",
"test:jest": "jest",
"test:cli-sanity": "node ./bin/cli.js index.js",
"test:cli-sanity-warning": "node ./bin/cli.js react.js ./bin/cli.js",
"test": "npm run test:lint && npm run test:jest && npm run test:cli-sanity && npm run test:cli-sanity-warning && npm run build",
"build": "node scripts/build.js"
},
"devDependencies": {
"@babel/eslint-parser": "7.17.0",
"@babel/eslint-plugin": "7.16.5",
"@babel/plugin-syntax-flow": "7.16.7",
"@babel/plugin-syntax-jsx": "7.16.7",
"@babel/plugin-transform-react-jsx": "7.17.3",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"eslint": "8.10.0",
"eslint-config-google": "0.14.0",
"eslint-find-rules": "4.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.2",
"eslint-plugin-standard": "4.0.2",
"eslint-plugin-unicorn": "41.0.0",
"eslint-plugin-vue": "8.5.0",
"jest": "27.5.1",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"typescript": "4.6.2"
}
}