-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
232162c
commit 078ae51
Showing
5 changed files
with
66 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,15 @@ | |
"build": "turbo build", | ||
"dev": "turbo dev", | ||
"lint": "turbo lint", | ||
"format": "prettier --write \"**/*.{ts,tsx,md}\"" | ||
"release": "turbo release" | ||
}, | ||
"devDependencies": { | ||
"@becklyn/prettier": "^1.0.2", | ||
"@changesets/cli": "^2.27.10", | ||
"turbo": "^2.3.2", | ||
"typescript": "5.5.4" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
{ | ||
"name": "@becklyn/eslint", | ||
"version": "0.1.0", | ||
"license": "MIT", | ||
"description": "the eslint-config base we use for our TypeScript apps", | ||
"homepage": "https://github.com/Becklyn-Studios/ts-libs", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Becklyn-Studios/ts-libs.git", | ||
"directory": "packages/eslint-config" | ||
}, | ||
"files": [ | ||
"**/*" | ||
], | ||
"dependencies": { | ||
"@dword-design/eslint-plugin-import-alias": "^5.1.1", | ||
"@next/eslint-plugin-next": "^14.1.1", | ||
"eslint": "^8.57.1", | ||
"eslint-config-next": "^14.2.17", | ||
"eslint-plugin-react": "^7.37.2", | ||
"eslint-plugin-storybook": "^0.8.0" | ||
} | ||
"name": "@becklyn/eslint", | ||
"version": "0.1.0", | ||
"license": "MIT", | ||
"description": "the eslint-config base we use for our TypeScript apps", | ||
"homepage": "https://github.com/Becklyn-Studios/ts-libs", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Becklyn-Studios/ts-libs.git", | ||
"directory": "packages/eslint-config" | ||
}, | ||
"files": [ | ||
"**/*" | ||
], | ||
"scripts": { | ||
"release": "" | ||
}, | ||
"dependencies": { | ||
"@dword-design/eslint-plugin-import-alias": "^5.1.1", | ||
"@next/eslint-plugin-next": "^14.1.1", | ||
"eslint": "^8.57.1", | ||
"eslint-config-next": "^14.2.17", | ||
"eslint-plugin-react": "^7.37.2", | ||
"eslint-plugin-storybook": "^0.8.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
{ | ||
"name": "@becklyn/tsconfig", | ||
"version": "0.0.0", | ||
"license": "MIT", | ||
"description": "the tsconfig base we use for our TypeScript apps", | ||
"homepage": "https://github.com/Becklyn-Studios/ts-frontend", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Becklyn-Studios/ts-frontend.git", | ||
"directory": "packages/tsconfig" | ||
}, | ||
"files": [ | ||
"**/*" | ||
] | ||
"name": "@becklyn/tsconfig", | ||
"version": "0.0.0", | ||
"license": "MIT", | ||
"description": "the tsconfig base we use for our TypeScript apps", | ||
"homepage": "https://github.com/Becklyn-Studios/ts-frontend", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Becklyn-Studios/ts-frontend.git", | ||
"directory": "packages/tsconfig" | ||
}, | ||
"files": [ | ||
"**/*" | ||
], | ||
"scripts": { | ||
"release": "" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,25 @@ | ||
{ | ||
"$schema": "https://turbo.build/schema.json", | ||
"ui": "tui", | ||
"tasks": { | ||
"build": { | ||
"dependsOn": ["^build"], | ||
"inputs": ["$TURBO_DEFAULT$", ".env*"], | ||
"outputs": [".next/**", "!.next/cache/**"] | ||
}, | ||
"lint": { | ||
"dependsOn": ["^lint"] | ||
}, | ||
"check-types": { | ||
"dependsOn": ["^check-types"] | ||
}, | ||
"dev": { | ||
"cache": false, | ||
"persistent": true | ||
"$schema": "https://turbo.build/schema.json", | ||
"ui": "tui", | ||
"tasks": { | ||
"build": { | ||
"dependsOn": ["^build"], | ||
"inputs": ["$TURBO_DEFAULT$", ".env*"], | ||
"outputs": [".next/**", "!.next/cache/**"] | ||
}, | ||
"release": { | ||
"dependsOn": ["^release"], | ||
"inputs": ["$TURBO_DEFAULT$", ".env*"] | ||
}, | ||
"lint": { | ||
"dependsOn": ["^lint"] | ||
}, | ||
"check-types": { | ||
"dependsOn": ["^check-types"] | ||
}, | ||
"dev": { | ||
"cache": false, | ||
"persistent": true | ||
} | ||
} | ||
} | ||
} |