-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2.15 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
{
"name": "create-blui-react-app",
"version": "1.0.0-alpha.2",
"keywords": [
"template",
"brightlayer-ui",
"brightlayer ui",
"React",
"Vite",
"Typescript",
"Templates",
"React test library",
"Prettier",
"ESlint"
],
"description": "This repository holds the different react vite templates used by Brightlayer UI",
"main": "index.js",
"type": "module",
"bin": {
"create-blui-react-app": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/etn-ccis/blui-react-cli-templates.git",
"directory": "blank-typescript"
},
"license": "BSD-3-Clause",
"engines": {
"node": ">=20"
},
"scripts": {
"generate:licenses": "npm-license-crawler -onlyDirectDependencies -json LICENSES.json",
"lint": "eslint '**/**.{tsx,ts}'",
"lint:fix": "eslint '**/**.{tsx,ts}' --fix",
"prettier": "prettier \"**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
"prettier:check": "prettier \"**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check",
"precommit": "yarn prettier && yarn lint && yarn generate:licenses",
"publish:package": "set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish",
"tag:package": "set npm_config_yes=true && npx -p @brightlayer-ui/tag blui-tag"
},
"prettier": "@brightlayer-ui/prettier-config",
"bugs": {
"url": "https://github.com/etn-ccis/blui-react-cli-templates/issues"
},
"devDependencies": {
"@brightlayer-ui/eslint-config": "^4.0.0-alpha.0",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"prettier": "^3.3.3"
},
"dependencies": {
"inquirer": "^11.0.2",
"typescript": "^5.5.3"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"templates",
"images",
"index"
]
}