forked from coolassassin/reactcci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.57 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "reactcci",
"version": "1.11.1",
"description": "React create component CLI",
"author": "coolassassin <[email protected]>",
"license": "MIT",
"main": "index.ts",
"repository": "[email protected]:coolassassin/reactcci.git",
"homepage": "https://kamenskih.gitbook.io/reactcci",
"bugs": {
"url": "https://github.com/coolassassin/reactcci/issues",
"email": "[email protected]"
},
"bin": {
"reactcci": "./build/cli.js",
"rcci": "./build/cli.js"
},
"scripts": {
"start": "babel-node -x .ts index.ts",
"build": "rollup -c",
"typecheck": "tsc --noEmit",
"run-build": "node build/cli.js",
"prettier": "prettier --write src/*.ts index.ts",
"test": "jest",
"coverage": "yarn test --coverage --collectCoverageFrom=./src/**"
},
"dependencies": {
"commander": "^9.2.0",
"kleur": "^4.1.4",
"prompts": "^2.4.2"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.2.5",
"@types/mock-fs": "^4.13.1",
"@types/node": "^14.0.13",
"@types/prompts": "2.0.9",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-jest": "^29.3.1",
"babelrc-rollup": "^3.0.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"jest": "^29.3.1",
"mock-fs": "^5.2.0",
"prettier": "^2.0.5",
"rollup": "^2.7.5",
"rollup-plugin-hashbang": "^2.2.2",
"rollup-plugin-terser": "^6.1.0",
"typescript": "^4.9.4"
},
"files": [
"defaultConfig.js",
"package.json",
"templates",
"build",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"browserslist": [
"node 12"
],
"keywords": [
"react",
"component",
"create",
"cli",
"generate",
"configurable",
"gen",
"scaffolding",
"make",
"tool",
"dev",
"build",
"create react component",
"rcci"
]
}