-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.65 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.65 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "create-react-thing",
"version": "0.0.2",
"description": "Create rich boilerplate for React libraries with ease",
"keywords": [
"react component library boilerplate",
"react npm library boilerplate",
"react library boilerplate",
"react boilerplate",
"react",
"boilerplate"
],
"homepage": "https://github.com/bence-toth/create-react-thing#readme",
"repository": {
"type": "git",
"url": "github:bence-toth/create-react-thing"
},
"bugs": {
"url": "https://github.com/bence-toth/create-react-thing/issues"
},
"license": "MIT",
"author": {
"name": "Bence A. Tóth",
"email": "tothab@gmail.com",
"url": "https://github.com/bence-toth"
},
"bin": "src/index.js",
"engines": {
"node": ">=12",
"npm": ">=5.2"
},
"files": [
"LICENSE",
"README.md",
"changelog.md",
"src"
],
"dependencies": {
"execa": "^4.0.0",
"handlebars": "^4.7.3",
"import-jsx": "^3.1.0",
"ink": "^2.7.1",
"ink-spinner": "^3.0.1",
"ink-text-input": "^3.2.2",
"meow": "^6.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"shelljs": "^0.8.3",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.6",
"@bence.a.toth/eslint-config": "^1.0.14",
"babel-eslint": "^10.1.0",
"chalk": "^3.0.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"ink-testing-library": "^1.0.3",
"eslint": "^6.8.0"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext .jsx --ext .js .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
"@babel/preset-react"
]
}
}