-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
{
"name": "sahaj-cli",
"version": "1.0.2",
"description": "Easily setup React or React Native project workspace with eslint, prettier, lint-staged and husky.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint './**/*.js'",
"format": "prettier --single-quote --jsx-bracket-same-line --write './**/*.{css,js}'"
},
"bin": {
"sahaj": "./index.js"
},
"author": "Sibaprasad Maiti <sib@thetaonelab.com>",
"repository": "https://github.com/Eyezon/sahaj-cli",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"inquirer": "^6.2.1",
"shelljs": "^0.8.3"
},
"keywords": [
"lint",
"eslint",
"prettier",
"stylelint",
"quality",
"check",
"format",
"validate"
],
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --jsx-bracket-same-line --write",
"eslint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}