Skip to content

Commit

Permalink
Use correct dependencies and peerDependencies, per pnpm's cli's recom…
Browse files Browse the repository at this point in the history
…mendations
  • Loading branch information
NullVoxPopuli committed Apr 28, 2022
1 parent 4331d1f commit 4d9cbbd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
6 changes: 5 additions & 1 deletion packages/consts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
"lint:js:fix": "eslint . --fix"
},
"devDependencies": {
"@nullvoxpopuli/eslint-configs": "2.2.5"
"@nullvoxpopuli/eslint-configs": "2.2.5",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">= v16.14.1"
Expand Down
6 changes: 5 additions & 1 deletion packages/horizon-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
"lint:js:fix": "eslint . --fix"
},
"devDependencies": {
"@nullvoxpopuli/eslint-configs": "2.2.5"
"@nullvoxpopuli/eslint-configs": "2.2.5",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">= v16.14.1"
Expand Down
8 changes: 7 additions & 1 deletion packages/monaco/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,22 @@
"lint:js:fix": "eslint . --fix"
},
"dependencies": {
"@nullvoxpopuli/horizon-theme": "*",
"@nullvoxpopuli/limber-consts": "*",
"broccoli-funnel": "^3.0.8",
"monaco-editor": "^0.33.0",
"monaco-editor-core": "^0.33.0",
"monaco-languages": "^2.11.1"
},
"devDependencies": {
"@nullvoxpopuli/eslint-configs": "2.2.5",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.0.0",
"esbuild": "0.14.27",
"esbuild-plugin-alias": "^0.2.1",
"recursive-copy": "^2.0.14"
"eslint": "^7.32.0",
"recursive-copy": "^2.0.14",
"typescript": "^4.6.2"
},
"engines": {
"node": ">= v16.14.1"
Expand Down
3 changes: 3 additions & 0 deletions packages/styles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@
"start": "tailwindcss -o dist/tailwind.css --watch"
},
"devDependencies": {
"autoprefixer": "^10.0.0",
"postcss": "^8.0.0",
"tailwindcss": "^3.0.23"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.2",
"broccoli-funnel": "^3.0.8"
}
}

0 comments on commit 4d9cbbd

Please sign in to comment.