-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
60
61
{
"name": "react-generator",
"version": "1.0.0",
"description": "React Component Generator",
"author": "Oguzhan Aslan",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"demo": "babel-node src/",
"copy": "cp package.json dist/ && cp README.md dist",
"build": "babel src -d dist --copy-files",
"lint": "eslint /src",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist/",
"clean-test": "rimraf src/test/*"
},
"bin": {
"rcg": "./dist/index.js"
},
"keywords": [
"cli",
"components",
"react",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"chalk": "^2.4.1",
"clui": "^0.3.6",
"commander": "^2.18.0",
"console.table": "^0.10.0",
"eslint-plugin-promise": "^4.0.1",
"figlet": "^1.2.0",
"fs-extra": "^7.0.0",
"inquirer": "^6.2.0",
"inquirer-fuzzy-path": "^1.0.0",
"node-cmd": "^3.0.0",
"node-compat-require": "^1.0.5",
"npm": "^6.4.1",
"prettier": "1.14.3",
"readline-sync": "^1.4.9",
"rimraf": "^2.6.2",
"to": "^0.2.9",
"update": "^0.7.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}