mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 08:08:34 +03:00
a9dbebf3f3
- Fixes prettier config to include `.tsx` - `prettier -w .` has been run in `app/ide-desktop` - `prettier -w .` has also been run in `pack/js`, however there were no changes. # Important Notes After this is merged, a PR SHOULD be created to add the following file to the root directory: `.git-blame-ignore-revs` ``` # <name of the commit for this PR> <hash of the commit for this PR> ``` This makes `git blame` ignore the commit, which is a good idea since this PR only does formatting changes.
41 lines
990 B
JSON
41 lines
990 B
JSON
{
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"author": {
|
|
"name": "Enso Team",
|
|
"email": "contact@enso.org"
|
|
},
|
|
"homepage": "https://github.com/enso-org/enso",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:enso-org/enso.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/enso-org/enso/issues"
|
|
},
|
|
"name": "root",
|
|
"private": true,
|
|
"workspaces": [
|
|
"lib/client",
|
|
"lib/common",
|
|
"lib/content",
|
|
"lib/dashboard",
|
|
"lib/dashboard/src/authentication",
|
|
"lib/content-config",
|
|
"lib/copy-plugin",
|
|
"lib/icons"
|
|
],
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
|
"@typescript-eslint/parser": "^5.55.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.36.0",
|
|
"eslint-plugin-jsdoc": "^40.0.2"
|
|
},
|
|
"scripts": {
|
|
"watch": "npm run watch --workspace enso-content",
|
|
"watch-dashboard": "npm run watch --workspace enso-dashboard",
|
|
"build-dashboard": "npm run build --workspace enso-dashboard"
|
|
}
|
|
}
|