-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.34 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
79
80
81
82
83
84
85
86
{
"name": "next-quick",
"version": "1.0.2",
"description": "Quickstart your Next.js projects w/ Auth, Deployment, DB using next-quick CLI!",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"next-quick": "./dist/index.js"
},
"scripts": {
"start": "node ./dist/index.js",
"build": "tsup && node src/scripts/copy-template-files.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts,.tsx",
"prepare": "husky",
"template": "node src/scripts/template-add-ts-nocheck.js",
"template:clear": "node src/scripts/template-remove-ts-nocheck.js"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/10ai/next-quick.git"
},
"keywords": [
"next",
"nextjs",
"next.js",
"cli",
"quickstart",
"typescript",
"builder",
"create-next-app",
"boilerplate",
"starter",
"template"
],
"author": "Josh Wong (ObjectJosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/10ai/next-quick/issues"
},
"homepage": "https://github.com/10ai/next-quick#readme",
"dependencies": {
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"inquirer": "^9.2.14",
"open": "^10.0.3",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.17",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**": [
"npm run prettier",
"npm run lint"
]
}
}