-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.21 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
{
"name": "react-components-boilerplate-cli",
"version": "2.0.0",
"description": "This cli lets you to create react components with boilerplate code generation for jsx imports, render body and props with PropTypes validations, you can create respective scss and test files for component.\n\n type crc -help for assist",
"main": "./src/cli.js",
"scripts": {
"crc": "node ./src/cli.js",
"build": "npm-scripts build",
"lint": "eslint ./src"
},
"author": "Kunal Kendrekar",
"license": "ISC",
"bin": {
"crc": "./src/cli.js"
},
"dependencies": {
"emmet": "^2.0.0",
"inquirer": "^7.1.0",
"log-symbols": "^3.0.0",
"prettier": "^2.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/kunalkendrekar115/react-component-boilerplate-cli.git"
},
"keywords": [
"react",
"react components create",
"boilerplate code generator"
],
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0"
}
}