-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.89 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.89 KB
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
{
"name": "esbuild-create-react-app",
"version": "2.1.0",
"exports": "./bin/index.js",
"type": "module",
"bin": {
"esbuild-create-react-app": "bin/index.js"
},
"author": "awran5 <awran5@yahoo.com> (https://awran5.vercel.app)",
"license": "MIT",
"scripts": {
"pre-commit": "lint-staged",
"lint": "eslint \"src/**/*.ts\" --max-warnings=0",
"commit": "git cz",
"changes": "auto-changelog -p --template keepachangelog && git add CHANGELOG.md",
"start": "tsc -w",
"build": "rm -rf bin && tsc",
"release": "semantic-release -b main"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chalk": "^5.1.2",
"inquirer": "^9.1.4",
"listr2": "^5.0.5",
"ora": "^6.1.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.2",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"auto-changelog": "^2.4.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.+(ts)": "eslint --fix",
"*.+(json|md)": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"keywords": [
"esbuild",
"create react app",
"react typescript"
],
"tags": [
"esbuild",
"create-react-app",
"react-typescript"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/awran5/esbuild-create-react-app.git"
},
"publishConfig": {
"access": "public"
}
}