-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "@enoveh/react-component-generator",
"version": "0.0.3",
"description": "Component Generator for ReactJS, React-Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"comgen": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js"
},
"author": "Ethan Lee",
"license": "MIT",
"devDependencies": {
"@types/esm": "^3.2.0",
"@types/inquirer": "^7.3.1",
"@types/listr": "^0.14.2",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "2.2.1",
"typescript": "^4.2.3"
},
"dependencies": {
"chalk": "^2.4.2",
"esm": "^3.2.25",
"execa": "^3.2.0",
"inquirer": "^7.0.0",
"listr": "^0.14.3",
"shelljs": "^0.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/devethan/react-component-generator"
},
"bugs": {
"url": "https://github.com/devethan/react-component-generator/issues"
},
"homepage": "https://github.com/devethan/react-component-generator#readme"
}