-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "create-next-quick",
"version": "2.0.4",
"description": "A CLI tool to quickly scaffold a Next.js project",
"main": "dist/create-next-quick.js",
"type": "module",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"start": "node dist/create-next-quick.js",
"pretest": "pnpm build",
"test": "mocha src/test/test.js && echo \"Tests passed successfully\" || (echo \"Tests failed\" && exit 1)",
"test:build-config": "mocha src/test/build-config.test.js",
"test:interactive": "mocha src/test/interactive.test.js",
"test:generate": "node src/test/generate-tests.js",
"check": "biome check . --write",
"lint": "biome lint . --write",
"format": "biome format . --write",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,json,md}": [
"biome check --write"
]
},
"files": [
"dist"
],
"bin": {
"create-next-quick": "dist/create-next-quick.js"
},
"keywords": [
"next.js",
"react",
"cli",
"scaffolding",
"starter",
"template",
"tailwind",
"javascript",
"frontend"
],
"author": "gaureshpai",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gaureshpai/create-next-quick.git"
},
"bugs": {
"url": "https://github.com/gaureshpai/create-next-quick/issues"
},
"homepage": "https://gaureshpai.github.io/create-next-quick/",
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"husky": "^9.1.7",
"inquirer-test": "^2.0.1",
"lint-staged": "^16.2.7",
"mocha": "^11.0.0",
"rollup": "^4.59.1"
}
}