ci: enable npm workspaces

This commit is contained in:
Morten Olsen
2023-09-06 13:21:13 +02:00
parent 6f485f90e4
commit b722d385f7
7 changed files with 1091 additions and 7 deletions

View File

@@ -1,10 +1,16 @@
{
"dependencies": {
"@pnpm/find-workspace-packages": "^6.0.9",
"@pnpm/logger": "^5.0.0",
"@react-native-community/eslint-config": "^3.2.0",
"eslint": "^8.33.0",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"turbo": "^1.9.9"
},
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"build": "turbo build",
@@ -14,5 +20,8 @@
"test": "turbo test"
},
"version": "0.1.8",
"name": "@bob-the-algorithm/repo"
"name": "@bob-the-algorithm/repo",
"devDependencies": {
"@types/node": "^20.5.9"
}
}