forked from uetchy/create-create-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.95 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
{
"name": "create-create-app",
"description": "Create your own `create-something` app.",
"version": "7.2.0",
"author": "Yasuaki Uechi <y@uechi.io>",
"scripts": {
"build": "npm run tsup -- --minify --dts",
"clean": "shx rm -rf lib 'templates/*/{yarn.lock,package-lock.json,node_modules}'",
"dev": "npm run tsup -- --watch",
"prepublishOnly": "npm run clean && npm run build",
"release": "release-it",
"test": "npm run tsup && jest",
"toc": "doctoc README.md",
"tsup": "tsup src/index.ts src/cli.ts -d lib"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"create-create-app": "lib/cli.js"
},
"files": [
"lib",
"templates"
],
"dependencies": {
"@types/yargs-interactive": "^2.1.3",
"chalk": "^4",
"cross-spawn": "^7.0.3",
"epicfail": "^3.0.0",
"execa": "^5",
"gitconfig": "^2.0.8",
"globby": "^11",
"handlebars": "^4.7.7",
"is-utf8": "^0.2.1",
"license.js": "^3.1.2",
"slash": "^3",
"uuid": "^8.3.2",
"yargs-interactive": "^3.0.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^4.2.2",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/uuid": "^8.3.4",
"@uetchy/doctoc": "^1.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"pretty-quick": "^3.1.3",
"release-it": "^14.13.1",
"shx": "^0.3.4",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsup": "^5.12.1",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.md": [
"doctoc -p",
"git add"
]
},
"homepage": "https://github.com/uetchy/create-create-app",
"repository": {
"type": "git",
"url": "https://github.com/uetchy/create-create-app.git"
},
"bugs": {
"url": "https://github.com/uetchy/create-create-app/issues"
},
"license": "MIT",
"keywords": [
"create-app",
"create-create-app"
]
}