-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "toNamedParameters",
"version": "1.0.0",
"dependencies": {
"ast-types": "^0.12.2",
"cosmiconfig": "^5.1.0",
"diacritics": "^1.3.0",
"find": "^0.2.9",
"glob": "7.1.6",
"graceful-fs": "^4.1.15",
"jscodeshift-imports": "^1.1.0",
"shelljs": "^0.8.3",
"slugify": "^1.3.4",
"write-file-atomic": "3.0.3",
"yargs": "15.3.1"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/node": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-typescript": "7.10.1",
"@typescript-eslint/eslint-plugin": "2.21.0",
"@typescript-eslint/parser": "2.21.0",
"babel-jest": "26.1.0",
"eslint": "7.4.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-no-only-tests": "2.4.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-typescript": "0.14.0",
"jest": "26.1.0",
"jscodeshift": "0.10.0",
"lint-staged": "9.1.0",
"pre-commit": "^1.2.2",
"prettier": "2.0.5",
"typescript": "3.9.6"
},
"license": "MIT",
"lint-staged": {
"*.js": [
"yarn prettier",
"eslint --fix",
"git add"
],
"*.{ts,tsx}": [
"yarn prettier",
"git add"
],
"*.yml": [
"prettier --write",
"git add"
]
},
"main": "index.js",
"pre-commit": "lint:staged",
"scripts": {
"build": "babel src --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\" --ignore *.spec.js --out-dir dist --copy-files --source-maps --verbose",
"lint": "eslint --ext ts --ext tsx src/**",
"lint:staged": "lint-staged",
"prettier": "prettier --write"
}
}