-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.68 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
91
92
{
"name": "reactcci",
"version": "1.14.0",
"type": "commonjs",
"description": "React create component CLI",
"author": "Kamenskikh Dmitrii <[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 && node copyDeclarations.js",
"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": "^11.1.0",
"kleur": "^4.1.5",
"prompts": "^2.4.2"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.11",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.10.6",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"babel-jest": "^29.7.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"prettier": "^3.1.1",
"rollup": "^4.9.2",
"rollup-plugin-hashbang": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.3.3"
},
"files": [
"defaultConfig.cjs",
"package.json",
"templates",
"build",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"browserslist": [
"node 18"
],
"keywords": [
"react",
"component",
"create",
"cli",
"generate",
"configurable",
"gen",
"scaffolding",
"make",
"tool",
"dev",
"build",
"create react component",
"rcci"
]
}