-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.76 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
{
"name": "create-fullstack-app-js",
"version": "0.0.1",
"description": "A CLI that creates a fullstack boilerplate application.",
"bin": {
"create-full-stack-app-js": "bin/create-fullstack-app-js",
"@shubhankar_kg/create-full-stack-app-js": "bin/create-fullstack-app-js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "eslint . --ext .ts --fix",
"format": "prettier . --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint",
"npm run format"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShubhankarKG/create-fullstack-app-js.git"
},
"keywords": [
"fullstack",
"templates",
"nodejs"
],
"files": [
"bin",
"dist",
"templates"
],
"author": "ShubhankarKG",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShubhankarKG/create-fullstack-app-js/issues"
},
"homepage": "https://github.com/ShubhankarKG/create-fullstack-app-js#readme",
"dependencies": {
"arg": "^5.0.0",
"chalk": "^4.1.0",
"execa": "^5.0.0",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0"
},
"devDependencies": {
"@types/execa": "^2.0.0",
"@types/inquirer": "^7.3.1",
"@types/listr": "^0.14.2",
"@types/mkdirp": "^1.0.1",
"@types/ncp": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}