-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.08 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "enterprise-nextjs-template",
"version": "4.1.14",
"description": "An opinionated Next.js 14 template generator with built-in testing and best practices",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"type": "module",
"bin": {
"enterprise-nextjs-template": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "tsc --watch",
"build": "rimraf dist && tsc",
"start": "node dist/cli.js",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"pre-commit": "lint-staged",
"commit": "cz",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"nextjs",
"cli",
"create-nextjs-app",
"enterprise",
"template",
"generator",
"typescript",
"react"
],
"author": "Daniel Olawoyin",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.12",
"ora": "^7.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/DannyPreye/enterprise-next.git"
},
"bugs": {
"url": "https://github.com/DannyPreye/enterprise-next.git/issues"
},
"homepage": "https://github.com/DannyPreye/enterprise-next.git#readme",
"publishConfig": {
"access": "public"
}
}