-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.01 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
{
"name": "@cgen/react-cli",
"version": "1.0.1",
"description": "Generate boilerplate for React-based projects.",
"repository": "https://github.com/mitch-warrenburg/cgen",
"author": "Mitch Warrenburg",
"license": "MIT",
"type": "module",
"main": "dist/react-cli.cjs",
"files": [
"dist"
],
"bin": {
"react-cli": "./dist/react-cli.cjs"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "12"
},
"keywords": [
"react",
"generate",
"workflow",
"storybook",
"boilerplate"
],
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.1.0",
"immutable": "^4.0.0-rc.12",
"shelljs": "^0.8.4",
"signale": "^1.4.0",
"terminal-link": "^2.1.1",
"winston": "^3.3.3",
"wrap-ansi": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/chalk": "^2.2.0",
"@types/node": "^14.6.0",
"@types/pug": "^2.0.4",
"@types/shelljs": "^0.8.8",
"@types/signale": "^1.4.1",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chalk-cli": "^4.1.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"node-notifier": "^8.0.0",
"prettier": "^2.1.1",
"pug": "^3.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.26.8",
"rollup-plugin-hashbang": "^2.2.2",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.27.2",
"ts-node-dev": "^1.0.0-pre.60",
"typescript": "^4.0.2"
},
"scripts": {
"start": "node dist/react-cli.cjs",
"build": "npm run clean && rollup -c",
"clean": "rimraf dist coverage",
"develop": "tsnd src/cli/cli.ts",
"lint": "eslint './src/**/*.{js,ts}'",
"format": "prettier --write './src/**/*.{js,ts}'"
}
}