add packages

This commit is contained in:
Raghunandan Balachandran
2020-01-31 16:54:06 +01:00
parent 605a562416
commit 9ff079458c
6 changed files with 70 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
{
"name": "@backstage/app",
"version": "0.0.0",
"main": "./src/index.js",
"dependencies": {
"@backstage/core": "0.0.0",
"react": "^16.12.0"
}
}
+3
View File
@@ -0,0 +1,3 @@
const core = require('@backstage/core');
console.log(core());
+5
View File
@@ -0,0 +1,5 @@
{
"name": "@backstage/core",
"version": "0.0.0",
"main": "./src/index.js"
}
+3
View File
@@ -0,0 +1,3 @@
module.exports = function () {
return "hello world!";
}