-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.53 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
{
"name": "n-comp",
"description": "CLI for creating new react components",
"version": "0.1.7",
"keywords": [
"react",
"reactjs",
"cli",
"component",
"boilerplate"
],
"author": {
"name": "Alexis Guzman",
"url": "https://github.com/codingcodax"
},
"homepage": "https://github.com/codingcodax/new-comp#readme",
"repository": {
"type": "git",
"url": "https://github.com/codingcodax/new-comp"
},
"bugs": {
"url": "https://github.com/codingcodax/new-comp/issues"
},
"license": "MIT",
"bin": {
"n-comp": "./lib/index.js"
},
"files": [
"lib",
"templates"
],
"main": "src/index.ts",
"module": "src/index.ts",
"scripts": {
"dev": "tsup --watch",
"start": "node lib/index.js",
"prebuild": "rm -rf lib",
"build": "tsup",
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"typecheck": "tsc --noEmit",
"format": "prettier src/** --check",
"format:fix": "prettier src/** --write"
},
"devDependencies": {
"@chakra-ui/react": "^2.8.2",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@mui/material": "^5.15.15",
"@types/node": "^20.12.7",
"@types/react": "^18.2.78",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.56.0",
"react": "^18.2.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@prettier/sync": "^0.5.1",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"prettier": "^3.2.5"
}
}