-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.16 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.16 KB
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
{
"name": "better-coding-script",
"version": "3.0.0",
"description": "A set of scripts to run in JavaScript and Typescript projects to easily parse your code through ESLint recommended rules and prettier. It also has specific rules for React projects (both JSX and TSX).",
"main": "src/index.js",
"bin": {
"better-coding-script": "./bin/index.js",
"bcs": "./bin/bcs.js"
},
"scripts": {
"test": "exit 0",
"prettier": "node ./bin/index.js prettier write-changed",
"prettier-all": "node ./bin/index.js prettier write",
"linc": "node ./bin/index.js linc",
"lint": "node ./bin/index.js lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prma85/better-coding-script.git"
},
"keywords": [
"eslint",
"prettier",
"tslint",
"lint",
"react",
"javascript",
"typescript"
],
"author": "Paulo Andrade",
"license": "MIT",
"bugs": {
"url": "https://github.com/prma85/better-coding-script/issues"
},
"homepage": "https://github.com/prma85/better-coding-script#readme",
"files": [
"/src",
"/bin",
"*.md",
"package.json"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.53.0",
"airbnb-prettier-config": "^1.0.4",
"babel-eslint": "^10.1.0",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"commander.js-error": "^1.1.0",
"confusing-browser-globals": "^1.0.11",
"cross-spawn": "^7.0.3",
"eslint": "^9.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.18.0",
"eslint-plugin-testing-library": "^5.10.2",
"eslint-plugin-unicorn": "^45.0.2",
"glob": "^8.1.0",
"minimatch": "^6.2.0",
"node-alias": "^1.0.4",
"path": "^0.12.7",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
}
}