feat: init component and www packages

This commit is contained in:
Anoop M D 2021-12-03 21:42:22 +05:30
parent 17d2a2a674
commit 93df006214
12 changed files with 13154 additions and 1 deletions

27
.gitignore vendored Normal file
View File

@ -0,0 +1,27 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
v14.17.0

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2021 grafnode
Copyright (c) 2021 Notebase Technologies LLP
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

13017
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,10 @@
{
"name": "grafnode",
"private": true,
"workspaces": [
"packages/grafnode-components",
"packages/grafnode-www"
],
"devDependencies": {
"lerna": "^4.0.0"
}

27
packages/grafnode-components/.gitignore vendored Normal file
View File

@ -0,0 +1,27 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

View File

@ -0,0 +1 @@
module.exports = 'Hello';

View File

@ -0,0 +1,19 @@
{
"name": "@grafnode/components",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grafnode/grafnode.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/grafnode/grafnode/issues"
},
"homepage": "https://github.com/grafnode/grafnode#readme"
}

27
packages/grafnode-www/.gitignore vendored Normal file
View File

@ -0,0 +1,27 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

View File

@ -0,0 +1,3 @@
const hello = require('@grafnode/components');
console.log(hello);

View File

@ -0,0 +1,22 @@
{
"name": "@grafnode/www",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grafnode/grafnode.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/grafnode/grafnode/issues"
},
"homepage": "https://github.com/grafnode/grafnode#readme",
"dependencies": {
"@grafnode/www": "0.0.1"
}
}

5
readme.md Normal file
View File

@ -0,0 +1,5 @@
# grafnode
An opensource api client.
### License
[MIT](LICENSE)