mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
5584fb1e3b
Motivation: aligning us with JS/Ember practices (runtime deps in `dependencies`, build/dev-time deps in `devDependencies`) 1. Move deps to devDeps where applicable (rule of thumb: it's a devDep unless it's required at runtime by the rails app or it's imported in the addon's code) 2. Remove unused dependencies and add missing ones (in addons) 3. Remove empty `repository` fields 4. Move `engines` and `ember` fields to the bottom
32 lines
711 B
JSON
32 lines
711 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"postinstall": "patch-package"
|
|
},
|
|
"workspaces": [
|
|
"admin",
|
|
"bootstrap-json",
|
|
"dialog-holder",
|
|
"discourse",
|
|
"discourse-common",
|
|
"discourse-hbr",
|
|
"discourse-plugins",
|
|
"discourse-widget-hbs",
|
|
"ember-cli-progress-ci",
|
|
"ember-production-deprecations",
|
|
"pretty-text",
|
|
"select-kit",
|
|
"truth-helpers",
|
|
"wizard"
|
|
],
|
|
"resolutions": {
|
|
"**/babel-plugin-debug-macros": "npm:@discourse/babel-plugin-debug-macros@0.4.0-pre1",
|
|
"**/babel-plugin-ember-template-compilation": "2.0.0",
|
|
"**/unset-value": "2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"patch-package": "^7.0.0",
|
|
"postinstall-postinstall": "^2.1.0"
|
|
}
|
|
}
|