-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.76 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.76 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "initsu",
"version": "1.3.0",
"description": "A modern CLI tool to scaffold Next.js and TypeScript projects with best practices",
"main": "dist/index.js",
"bin": {
"initsu": "dist/index.js"
},
"homepage": "https://github.com/dharminnagar/initsu#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dharminnagar/initsu.git"
},
"bugs": {
"url": "https://github.com/dharminnagar/initsu/issues"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"prepare": "husky"
},
"keywords": [
"nextjs",
"cli",
"template",
"configuration",
"typescript"
],
"author": "Dharmin Nagar",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0",
"figlet": "^1.9.1",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.0",
"ora": "^7.0.1"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.0",
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jest": "^29.0.0",
"jiti": "^2.5.1",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.43.0"
},
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}