-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "next-base-cli",
"version": "0.0.16",
"description": "A CLI tool to Create a Next.js Base",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"prepare": "husky"
},
"bin": {
"next-base": "dist/index.js"
},
"files": [
"dist"
],
"main": "dist/index.js",
"keywords": [
"nextjs"
],
"repository": {
"url": "https://github.com/khachoangpt/next-base-cli"
},
"homepage": "https://github.com/khachoangpt/next-base-cli#readme",
"author": "khachoangpt",
"license": "ISC",
"dependencies": {
"chalk": "^5.3.0",
"cross-spawn": "^7.0.3",
"inquirer": "^10.2.2",
"tsup": "^8.3.5",
"tsx": "^4.19.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.5.4",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}