-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.28 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
{
"version": "1.2.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"public"
],
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "yarn prepare -w",
"commit": "git add . && git commit -m",
"origin": "git push origin master",
"prepare": "yarn rm:dist && tsc",
"start": "node dist/index",
"rm:dist": "rm -rf dist"
},
"peerDependencies": {},
"name": "create-tsa",
"description": "Set up a modern TypeScript app by running one command",
"author": "Justine Licuanan",
"keywords": [
"cli",
"typescript",
"perng",
"graphql",
"express",
"tsconfig",
"starter-kit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JustineLicuanan/create-typescript-app.git"
},
"bugs": {
"url": "https://github.com/JustineLicuanan/create-typescript-app/issues"
},
"homepage": "https://github.com/JustineLicuanan/create-typescript-app#readme",
"bin": {
"create-tsa": "./dist/index.js",
"tsa": "./dist/index.js"
},
"devDependencies": {
"@types/clear": "^0.1.1",
"@types/fs-extra": "^9.0.7",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.26",
"typescript": "^4.1.5"
},
"dependencies": {
"chalk": "^4.1.0",
"clear": "^0.1.0",
"fs-extra": "^9.1.0",
"inquirer": "^7.3.3"
}
}