-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.42 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
{
"private": true,
"name": "<__JS_NPM_PACKAGE_NAME__>",
"version": "0.0.0",
"description": "<__WORKSPACE_DESCRIPTION__>",
"keywords": [
"<__WORKSPACE_KEYWORDS__>"
],
"homepage": "https://github.com/<__GITHUB_USERNAME__>/<__GITHUB_REPOSITORY_NAME__>#readme",
"bugs": {
"url": "https://github.com/<__GITHUB_USERNAME__>/<__GITHUB_REPOSITORY_NAME__>/issues"
},
"license": "MIT",
"author": "<__GITHUB_DISPLAY_NAME__>",
"repository": {
"type": "git",
"url": "https://github.com/<__GITHUB_USERNAME__>/<__GITHUB_REPOSITORY_NAME__>"
},
"scripts": {
"build": "turbo build",
"commit": "cz",
"dev": "turbo dev",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,cjs,css,json,md,mdx,yml}\"",
"lint": "turbo lint",
"publish:packages": "changeset publish",
"test": "turbo test",
"version:packages": "changeset version && pnpm install --lockfile-only"
},
"devDependencies": {
"@brionmario/eslint-plugin": "^0.3.4",
"@brionmario/prettier-config": "^0.1.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-turbo": "^2.3.0",
"prettier": "^3.3.3",
"turbo": "latest"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}