-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
{
"name": "codemod-replace-react-fc-typescript",
"version": "0.0.1",
"description": "jscodeshift's codemod to replace React.FC when using React with Typescript",
"main": "index.js",
"scripts": {
"test": "jest",
"compile": "tsc --build --force --verbose",
"build": "ncc build ./transform.ts -o dist",
"format": "prettier --write *.ts",
"style:check": "prettier --check *.ts",
"lint": "eslint ./ --fix --ext .ts --max-warnings 0",
"lint:check": "eslint ./ --ext .ts --max-warnings 0"
},
"keywords": [
"React",
"Typescript",
"codemod",
"jscodeshift"
],
"repository": {
"type": "git",
"url": "https://github.com/gndelia/codemod-replace-react-fc-typescript"
},
"homepage": "https://github.com/gndelia/codemod-replace-react-fc-typescript",
"bugs": {
"url": "https://github.com/gndelia/codemod-replace-react-fc-typescript/issues"
},
"author": {
"name": "Gonzalo D'Elia",
"email": "[email protected]"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.ts": [
"npm run format",
"npm run lint"
]
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jest": "^26.0.15",
"@types/jscodeshift": "^0.7.1",
"@types/react": "^16.9.55",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"@vercel/ncc": "^0.24.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.6.1",
"jscodeshift": "^0.11.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"typescript": "^4.3.5"
}
}