forked from snaerth/create-react-component-folder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.39 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
{
"name": "create-react-component-folder",
"version": "0.3.7",
"description": "Creates single react component folder structure",
"main": "./lib/index",
"readme": "README.md",
"engines": {
"npm": ">=5.2.0"
},
"scripts": {
"dev": "node ./lib/index",
"lint": "eslint lib bin --fix"
},
"keywords": [
"cli",
"scaffold",
"react",
"react-native",
"typescript",
"component",
"components",
"npm",
"crcf",
"create-react-app",
"create-react-component",
"create-react-component-folder"
],
"repository": {
"type": "git",
"url": "git+https://github.com/snaerth/create-react-component-folder"
},
"author": "Snær Seljan Þóroddsson",
"license": "MIT",
"devDependencies": {
"app-root-dir": "^1.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"prettier-eslint": "^9.0.2"
},
"bin": {
"create-react-component-folder": "./bin/create-react-component-folder.js",
"crcf": "./bin/crcf.js"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^5.1.0",
"cosmiconfig": "^6.0.0",
"fs": "0.0.1-security",
"handlebars": "^4.1.2",
"log-update": "^4.0.0",
"mkdirp": "^1.0.4",
"node-alias": "^1.0.4",
"prettier": "^2.2.1",
"semver": "^7.3.4"
}
}