-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.89 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
{
"name": "create-boilertown",
"version": "0.0.1",
"description": "The ultimate boilerplate generator for your project.",
"author": "mikunpham <[email protected]>",
"license": "MIT",
"type": "module",
"bin": "./dist/index.js",
"exports": "./dist/index.js",
"engines": {
"node": ">=14.16"
},
"files": [
"dist"
],
"keywords": [
"boilertown",
"boilerplate",
"template",
"generator",
"scaffolding"
],
"scripts": {
"boilerplate:add": "node ./scripts/add-boilerplate.js",
"build": "tsup src/index.ts --format esm --clean --minify --metafile",
"dev": "tsup src/index.ts --format esm --watch --clean --onSuccess \"node dist/index.js\"",
"test": "vitest run",
"prepare": "husky install",
"changeset": "changeset",
"release": "changeset publish"
},
"dependencies": {
"camelcase": "^7.0.1",
"chalk": "^5.3.0",
"commander": "^10.0.0",
"enquirer": "^2.4.1",
"figlet": "^1.7.0",
"globby": "^13.2.2",
"gradient-string": "^2.0.2",
"ora": "^6.3.1",
"sort-package-json": "^2.6.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/figlet": "^1.5.7",
"@types/gradient-string": "^1.1.4",
"@types/node": "^18.18.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"ansi-regex": "^6.0.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"handlebars": "^4.7.8",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"type-fest": "^3.13.1",
"typescript": "^5.2.2",
"vitest": "^0.29.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{md,mdx,yml,json}": [
"prettier --write"
]
}
}