origin
A set of toolkits that together provide a system for issuance and management of Energy Attribute Certificates.
https://github.com/energywebfoundation/origin
Category: Energy Systems
Sub Category: Energy Markets
Keywords from Contributors
measures profile transforms animations route charts reporting composable control atoms
Last synced: about 16 hours ago
JSON representation
Repository metadata
Origin is a set of toolkits that together provide a system for issuance and management of Energy Attribute Certificates
- Host: GitHub
- URL: https://github.com/energywebfoundation/origin
- Owner: energywebfoundation
- License: mit
- Created: 2019-08-14T14:06:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-01-08T13:43:29.000Z (4 months ago)
- Last Synced: 2025-01-13T04:32:54.094Z (3 months ago)
- Language: TypeScript
- Homepage: https://energyweb.org/technology/ew-origin/
- Size: 141 MB
- Stars: 105
- Watchers: 23
- Forks: 58
- Open Issues: 59
- Releases: 913
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE
README.md
Origin is a set of toolkits that together provide a system for issuance and management of Energy Attribute Certificates (EACs). This repository is an entry point to Origin systems. It has a goal of explaining briefly the whole system and providing you with insight and info where to explore next.
🚧 Documentation available at https://energy-web-foundation-origin.readthedocs-hosted.com/en/latest/ 🚧
Table of Contents
- Table of Contents
- Packages
- Preparation
- Installation
- Build
- Test
- Run demo
- Energy Attribute Certificates
- Deployment
- Contribution guidelines
Packages
SDK Releases
Package | Stable | Canary | Description |
---|---|---|---|
@energyweb/origin-device-registry-api |
Generic implementation of API working with Origin device registry | ||
@energyweb/origin-device-registry-irec-local-api |
API for local version of I-REC compatible registry | ||
@energyweb/origin-energy-api |
API for Smart meter reads | ||
@energyweb/origin-organization-irec-api |
API for I-REC based organizations | ||
@energyweb/origin-backend |
Example backend necessary for running Origin | ||
@energyweb/issuer |
Energy Attribute Certificates Issuer Module | ||
@energyweb/issuer-api |
NestJS module for interacting with renewable energy certificates | ||
@energyweb/issuer-irec-api |
NestJS module for interacting with renewable energy certificates with IREC connectivity | ||
@energyweb/exchange |
A service project hosting order book based exchange | ||
@energyweb/exchange-irec |
A service project hosting order book based I-REC specific exchange | ||
@energyweb/exchange-core |
Generic EACs order book product and matching | ||
@energyweb/exchange-core-irec |
An IREC based EACs product and matching | ||
@energyweb/exchange-io-erc1888 |
ERC1888 withdwaral/deposit processing for exchange | ||
@energyweb/utils-general |
General Utilities | ||
@energyweb/origin-ui-core |
React components library for building Origin marketplace user interface | ||
@energyweb/origin-ui-localization |
Localization library for building Origin marketplace user interface | ||
@energyweb/origin-ui-theme |
Material-UI theme configuration and styling utilities | ||
@energyweb/origin-ui-utils |
UI general utilities |
Applications, Infrastructure and Demo
Package | Description |
---|---|
@energyweb/origin-backend-irec-app |
Bootstrap project for Origin API that uses I-REC API connection |
@energyweb/origin-ui |
Root of UI for Origin |
@energyweb/migrations-irec |
Deployment and configuration utilities |
Packages types
Origin monorepo produce 3 types of the packages that are meant to be used in different use-cases:
Stable
Stable Origin SDK packages are created during release
branch build.
Install using yarn add @energyweb/{package}
Canary
Canary packages are created during master
branch builds. Canary reflects current state of the master
branch, they should be a working versions considers as alpha
Install using yarn add @energyweb/{package}@canary
Preview
Preview packages are built on a special preview
branch, this is mostly used as interal tool for tests, demos, discussions.
Install using yarn add @energyweb/{package}@preview
Preparation
- Make sure you are using Node 14.x.x
- Make sure have latest
@microsoft/rush
package manager installed.
npm install -g @microsoft/rush
- Make sure you have Java runtime installed
- Install Postgres 12.x+ and create a new database named
origin
.
We recommend using Docker based setup as follows (requires psql command line tool installed):
docker pull postgres
docker run --name origin-postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=origin -d -p 5432:5432 postgres
-
Make sure you have created a
.env
file in the root of the monorepo and that all necessary variables are set.
Use.env.example
as an example of how the.env
file should look. -
Create InfluxDB to store smart meter readings
docker run --rm --env-file ./.env -v $PWD/influxdb-local:/var/lib/influxdb influxdb:1.8 /init-influxdb.sh
Run the InfluxDB instance
docker run --name energy-influxdb --env-file ./.env -d -p 8086:8086 -v $PWD/influxdb-local:/var/lib/influxdb -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro influxdb:1.8
- For custom DB credentials, ports, db name etc refer to https://github.com/energywebfoundation/origin/tree/master/packages/apps/origin-backend-irec-app#development
Installation
rush update
Build
rush build
Test
rush test:e2e
Run demo
After you have the .env
file created, installed dependencies (rush install
) and build completed (rush build
) run the following command:
rush run:origin
Visit the UI at: http://localhost:3000.
Heroku environment provisioning
For fast deployment to Heroku you can run the available script provision-heroku-origin
PREFIX=<name> STAGE=<stage> TEAM=<team> ./provision-heroku-origin.sh
Naming convention is for apps:
${PREFIX}-origin-ui-${STAGE}
${PREFIX}-origin-api-${STAGE}
For e.g in order to create ptt-origin-ui-stable
run the script with:
PREFIX=ptt STAGE=stable TEAM=<team> ./provision-heroku-origin.sh
Note: This script assumes that Heroku CLI tool is installed and your are logged in https://devcenter.heroku.com/articles/heroku-cli
Energy Attribute Certificates
Energy Attribute Certificates, or EACs, is an official document which guarantees that produced energy comes from a renewable source. There are different standards that regulate how data is stored and validated. In Europe, this document is called Guarantee of Origin (GO), in North America, it's called Renewable Energy Certificate (REC), and in parts of Asia, Africa, the Middle East, and Latin America governing standard is International REC (I-REC). Standards do vary, but they all share the same core principles.
The main purpose of EACs is to act as an accounting vehicle to prove that consumed energy came from a renewable source. EACs are mostly used to address sustainability reports regarding Scope 2 emissions.
Deployment
For deployment instructions please refer to Deployment wiki page.
Contribution guidelines
If you want to contribute to Origin, be sure to follow classic open source contribution guidelines (described below).
- Commiting a change
- Fork the repository
- Make a change to repo code
- Commit the change to the
master
branch
- Pull request
- Open a pull request from your fork
master
branch - Request code reviews from @JosephBagaric, @kosecki123, @alexworker23 or @ioncreature
- Once the PR is approved and the build passes, it will be merged to the master branch
- Open a pull request from your fork
Owner metadata
- Name: Energy Web Foundation
- Login: energywebfoundation
- Email:
- Kind: organization
- Description:
- Website: http://energyweb.org/
- Location: Germany
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/32361864?v=4
- Repositories: 93
- Last ynced at: 2023-03-02T06:25:26.363Z
- Profile URL: https://github.com/energywebfoundation
GitHub Events
Total
- Watch event: 1
- Delete event: 1
- Push event: 26
- Fork event: 1
Last Year
- Watch event: 1
- Delete event: 1
- Push event: 26
- Fork event: 1
Committers metadata
Last synced: 4 days ago
Total Commits: 6,075
Total Committers: 41
Avg Commits per committer: 148.171
Development Distribution Score (DDS): 0.712
Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0
Name | Commits | |
---|---|---|
Renovate Bot | b****t@r****m | 1749 |
JosephBagaric | b****s@g****m | 999 |
Piotr Kosiński | p****i@g****m | 776 |
Alexander Popadyuk | a****k@4****s | 734 |
Daniel Kmak | n****i@g****m | 382 |
Dmitry Fesenko | d****o@4****s | 324 |
Aleksandr Marenin | c****o@g****m | 248 |
driamend | d****d@g****m | 133 |
wjpurdum | w****m@g****m | 107 |
Soanvig | s****g@g****m | 90 |
m0azam | i****m@g****m | 74 |
marcin-l-tsh | m****a@t****o | 66 |
Heiko Burkhardt | h****o@s****t | 62 |
renovate[bot] | 2****] | 60 |
Martin Küchler | m****e@h****e | 42 |
Martin Kuechler | m****n@s****t | 37 |
Chirag Mahaveer Parmar | c****r@s****t | 34 |
Origin | o****n@e****g | 33 |
Chirag Mahaveer Parmar | c****r@C****n | 22 |
Grzegorz Matuszak | g****k@t****o | 19 |
Artur Sudnik-Hrynkiewicz | a****z@e****g | 18 |
arvindchez | a****z@g****m | 15 |
github-actions[bot] | 4****] | 7 |
Chirag Mahaveer Parmar | c****r@C****l | 5 |
Markus Keil | m****l@s****t | 5 |
Jonathan Waldenfels | j****w@g****e | 4 |
Kevin Nzeng Essimengane | k****g@e****g | 3 |
dependabot[bot] | 4****] | 3 |
whitneypurdum | w****m@e****g | 3 |
Robert Sprunk | 4****y | 3 |
and 11 more... |
Committer domains:
- energyweb.org: 4
- slock.it: 4
- tsh.io: 2
- 482.solutions: 2
- odds.team: 1
- gmx.de: 1
- chirags-mbp.lan: 1
- hs-mittweida.de: 1
- renovateapp.com: 1
Issue and Pull Request metadata
Last synced: 1 day ago
Total issues: 74
Total pull requests: 3,326
Average time to close issues: 3 months
Average time to close pull requests: 5 days
Total issue authors: 38
Total pull request authors: 34
Average comments per issue: 1.47
Average comments per pull request: 0.13
Merged pull request: 3,102
Bot issues: 2
Bot pull requests: 1,937
Past year issues: 2
Past year pull requests: 19
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 2
Past year pull request authors: 2
Past year average comments per issue: 0.0
Past year average comments per pull request: 0.0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 19
Top Issue Authors
- adivate-admin (16)
- kosecki123 (6)
- roockiee (5)
- andrii482 (5)
- atchapcyp (3)
- RohitGupta027 (2)
- renovate[bot] (2)
- devrajsinghrawat (2)
- soanvig (2)
- Ahmed-Suhail (2)
- josipbagaric (2)
- ali-sheikh (1)
- Agupane (1)
- KamalJoshi8848 (1)
- oxfordssherwanic (1)
Top Pull Request Authors
- renovate[bot] (1,931)
- josipbagaric (331)
- kosecki123 (291)
- alexworker23 (198)
- Kuzirashi (179)
- ioncreature (110)
- JGiter (77)
- soanvig (41)
- driamend (33)
- marcin-l-tsh (25)
- wjpurdum (21)
- m0azam (20)
- arvindchez (11)
- arkadiusz-s (10)
- artursudnik (9)
Top Issue Labels
- enhancement (8)
- UI (6)
- bug (6)
- good first issue (3)
- question (3)
- localization (1)
Top Pull Request Labels
- dependencies (1,630)
- bug (130)
- enhancement (84)
- UI (26)
- documentation (22)
- release (13)
- feature (12)
- work in progress (5)
- help wanted (4)
- good first issue (1)
- origin next (1)
Package metadata
- Total packages: 78
-
Total downloads:
- npm: 229,560 last-month
- Total docker downloads: 620
- Total dependent packages: 370 (may contain duplicates)
- Total dependent repositories: 103 (may contain duplicates)
- Total versions: 32,341
- Total maintainers: 7
npmjs.org: @energyweb/utils-general
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/utils-general#readme
- Licenses: MIT
- Latest release: 11.2.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:23.334Z (1 day ago)
- Versions: 1,660
- Dependent Packages: 35
- Dependent Repositories: 7
- Downloads: 14,211 Last month
- Docker Downloads: 31
-
Rankings:
- Dependent packages count: 0.754%
- Downloads: 1.038%
- Docker downloads count: 1.338%
- Average: 2.779%
- Forks count: 3.928%
- Dependent repos count: 4.491%
- Stargazers count: 5.123%
- Maintainers (7)
npmjs.org: @energyweb/origin-backend-core
- Homepage: https://github.com/energywebfoundation/origin#readme
- Licenses: MIT
- Latest release: 8.2.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:21.979Z (1 day ago)
- Versions: 1,430
- Dependent Packages: 31
- Dependent Repositories: 6
- Downloads: 10,562 Last month
- Docker Downloads: 31
-
Rankings:
- Dependent packages count: 0.824%
- Downloads: 1.156%
- Docker downloads count: 1.338%
- Average: 2.863%
- Forks count: 3.928%
- Dependent repos count: 4.81%
- Stargazers count: 5.123%
- Maintainers (7)
npmjs.org: @energyweb/origin-backend-utils
- Homepage: https://github.com/energywebfoundation/origin#readme
- Licenses: MIT
- Latest release: 1.8.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:18.719Z (1 day ago)
- Versions: 1,080
- Dependent Packages: 18
- Dependent Repositories: 7
- Downloads: 9,153 Last month
- Docker Downloads: 31
-
Rankings:
- Dependent packages count: 1.249%
- Docker downloads count: 1.338%
- Downloads: 1.445%
- Average: 2.929%
- Forks count: 3.928%
- Dependent repos count: 4.491%
- Stargazers count: 5.123%
- Maintainers (7)
npmjs.org: @energyweb/issuer
<p align="center"> <a href="https://www.energyweb.org" target="blank"><img src="../../../docs/images/EW.png" width="120" alt="Energy Web Foundation Logo" /></a> </p>
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/issuer
- Licenses: MIT
- Latest release: 7.0.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:19.148Z (1 day ago)
- Versions: 1,394
- Dependent Packages: 18
- Dependent Repositories: 6
- Downloads: 12,344 Last month
- Docker Downloads: 31
-
Rankings:
- Downloads: 1.154%
- Dependent packages count: 1.249%
- Docker downloads count: 1.338%
- Average: 2.934%
- Forks count: 3.928%
- Dependent repos count: 4.81%
- Stargazers count: 5.123%
- Maintainers (7)
npmjs.org: @energyweb/origin-backend
API for managing users, certificate, requests and devices in the Origin project
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-backend#readme
- Licenses: MIT
- Latest release: 11.2.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:24.638Z (1 day ago)
- Versions: 1,681
- Dependent Packages: 20
- Dependent Repositories: 5
- Downloads: 12,689 Last month
- Docker Downloads: 31
-
Rankings:
- Downloads: 1.044%
- Dependent packages count: 1.152%
- Docker downloads count: 1.338%
- Average: 2.968%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent repos count: 5.224%
- Maintainers (7)
npmjs.org: @energyweb/exchange
A service project hosting order book based exchange
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/exchange#readme
- Licenses: MIT
- Latest release: 1.14.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:24.311Z (1 day ago)
- Versions: 1,355
- Dependent Packages: 11
- Dependent Repositories: 3
- Downloads: 10,627 Last month
- Docker Downloads: 31
-
Rankings:
- Downloads: 1.085%
- Docker downloads count: 1.338%
- Dependent packages count: 1.85%
- Average: 3.322%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent repos count: 6.605%
- Maintainers (7)
npmjs.org: @energyweb/issuer-api
NestJS module for interacting with renewable energy certificates
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/issuer-api#readme
- Licenses: MIT
- Latest release: 0.7.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:23.773Z (1 day ago)
- Versions: 537
- Dependent Packages: 9
- Dependent Repositories: 4
- Downloads: 4,776 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Downloads: 1.788%
- Dependent packages count: 2.179%
- Average: 3.358%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent repos count: 5.79%
- Maintainers (7)
npmjs.org: @energyweb/exchange-core
Generic EACs order book product and matching
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/exchange-core#readme
- Licenses: MIT
- Latest release: 3.2.7 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:20.428Z (1 day ago)
- Versions: 1,366
- Dependent Packages: 7
- Dependent Repositories: 3
- Downloads: 12,105 Last month
- Docker Downloads: 31
-
Rankings:
- Downloads: 1.205%
- Docker downloads count: 1.338%
- Dependent packages count: 2.686%
- Average: 3.481%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent repos count: 6.605%
- Maintainers (7)
npmjs.org: @energyweb/origin-organization-irec-api
An API for I-REC based organizations
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-organization-irec-api#readme
- Licenses: MIT
- Latest release: 1.9.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:16.433Z (1 day ago)
- Versions: 668
- Dependent Packages: 10
- Dependent Repositories: 2
- Downloads: 5,071 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Downloads: 1.643%
- Dependent packages count: 1.996%
- Average: 3.659%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/origin-device-registry-api
An API for Origin device registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-device-registry-api#readme
- Licenses: MIT
- Latest release: 1.1.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:23.665Z (1 day ago)
- Versions: 302
- Dependent Packages: 10
- Dependent Repositories: 2
- Downloads: 2,409 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Dependent packages count: 1.996%
- Downloads: 2.383%
- Average: 3.783%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/origin-backend-client
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-backend-client#readme
- Licenses: MIT
- Latest release: 10.0.10 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:25.807Z (1 day ago)
- Versions: 1,649
- Dependent Packages: 15
- Dependent Repositories: 2
- Downloads: 10,811 Last month
-
Rankings:
- Downloads: 0.966%
- Dependent packages count: 1.442%
- Average: 3.878%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/exchange-irec
A service project hosting order book based I-REC specific exchange
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/exchange-irec#readme
- Licenses: MIT
- Latest release: 2.0.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:16.503Z (1 day ago)
- Versions: 405
- Dependent Packages: 5
- Dependent Repositories: 2
- Downloads: 2,393 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Downloads: 1.974%
- Dependent packages count: 3.592%
- Forks count: 3.928%
- Average: 3.981%
- Stargazers count: 5.123%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/issuer-irec-api-wrapper
A Typescript wrapper for I-REC Evident API
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/issuer-irec-api-wrapper
- Licenses: MIT
- Latest release: 1.2.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:15.288Z (1 day ago)
- Versions: 264
- Dependent Packages: 6
- Dependent Repositories: 2
- Downloads: 1,339 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Downloads: 2.556%
- Dependent packages count: 3.056%
- Forks count: 3.928%
- Average: 3.988%
- Stargazers count: 5.123%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/exchange-token-account
A token forwarder account for ERC1155 tokens
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/exchange-token-account#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:24.700Z (1 day ago)
- Versions: 1,367
- Dependent Packages: 3
- Dependent Repositories: 3
- Downloads: 12,292 Last month
- Docker Downloads: 31
-
Rankings:
- Downloads: 1.225%
- Docker downloads count: 1.338%
- Forks count: 3.928%
- Average: 3.995%
- Stargazers count: 5.123%
- Dependent packages count: 5.751%
- Dependent repos count: 6.605%
- Maintainers (7)
npmjs.org: @energyweb/device-registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/device-registry
- Licenses: GPL-3.0-or-later
- Latest release: 8.0.2 (published over 3 years ago)
- Last Synced: 2025-04-25T14:41:33.323Z (1 day ago)
- Versions: 1,502
- Dependent Packages: 10
- Dependent Repositories: 2
- Downloads: 8,820 Last month
-
Rankings:
- Downloads: 1.207%
- Dependent packages count: 1.996%
- Forks count: 3.928%
- Average: 4.037%
- Stargazers count: 5.123%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/origin-backend-client-mocks
- Homepage: https://github.com/energywebfoundation/origin
- Licenses: GPL-3.0-or-later
- Latest release: 7.0.0 (published over 4 years ago)
- Last Synced: 2025-04-25T14:41:25.201Z (1 day ago)
- Versions: 941
- Dependent Packages: 10
- Dependent Repositories: 2
- Downloads: 6,511 Last month
-
Rankings:
- Downloads: 1.397%
- Dependent packages count: 1.996%
- Forks count: 3.928%
- Average: 4.075%
- Stargazers count: 5.123%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-core
React components library for building Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/ui/core/README.md
- Licenses: MIT
- Latest release: 4.0.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:35.323Z (1 day ago)
- Versions: 1,460
- Dependent Packages: 4
- Dependent Repositories: 4
- Downloads: 10,637 Last month
-
Rankings:
- Downloads: 1.243%
- Forks count: 3.928%
- Average: 4.094%
- Dependent packages count: 4.385%
- Stargazers count: 5.123%
- Dependent repos count: 5.79%
- Maintainers (7)
npmjs.org: @energyweb/origin-device-registry-irec-local-api
An API for local version of I-REC compatible registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-device-registry-irec-local-api#readme
- Licenses: MIT
- Latest release: 1.2.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:24.635Z (1 day ago)
- Versions: 297
- Dependent Packages: 8
- Dependent Repositories: 1
- Downloads: 2,097 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Downloads: 2.304%
- Dependent packages count: 2.402%
- Forks count: 3.928%
- Average: 4.3%
- Stargazers count: 5.123%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/exchange-io-erc1888
ERC1888 withdwaral/deposit processing for exchange
- Homepage: https://github.com/energywebfoundation/origin#readme
- Licenses: MIT
- Latest release: 1.5.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:13.901Z (1 day ago)
- Versions: 410
- Dependent Packages: 3
- Dependent Repositories: 2
- Downloads: 4,615 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Downloads: 2.048%
- Forks count: 3.928%
- Average: 4.353%
- Stargazers count: 5.123%
- Dependent packages count: 5.751%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/migrations
Migrations for deploying the Origin SDK smart contracts.
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/migrations#readme
- Licenses: GPL-3.0-or-later
- Latest release: 3.2.8 (published over 3 years ago)
- Last Synced: 2025-04-25T14:41:35.293Z (1 day ago)
- Versions: 1,506
- Dependent Packages: 3
- Dependent Repositories: 3
- Downloads: 8,794 Last month
-
Rankings:
- Downloads: 1.102%
- Forks count: 3.928%
- Average: 4.502%
- Stargazers count: 5.123%
- Dependent packages count: 5.751%
- Dependent repos count: 6.605%
- Maintainers (7)
npmjs.org: @energyweb/localization
Localization strings for Origin
- Homepage: https://github.com/energywebfoundation/origin
- Licenses: GPL-3.0-or-later
- Latest release: 0.15.0 (published over 3 years ago)
- Last Synced: 2025-04-25T14:41:25.045Z (1 day ago)
- Versions: 1,321
- Dependent Packages: 4
- Dependent Repositories: 2
- Downloads: 8,939 Last month
-
Rankings:
- Downloads: 1.211%
- Forks count: 3.928%
- Dependent packages count: 4.385%
- Average: 4.515%
- Stargazers count: 5.123%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/user-registry
*NOTE: If you're looking to build your own libraries to interact with the smart contracts of the user registry, please check the contracts in the [contracts](contracts/) folder and test them with those contracts.*
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/user-registry#readme
- Licenses: GPL-3.0-or-later
- Latest release: 3.0.4 (published about 5 years ago)
- Last Synced: 2025-04-25T14:41:27.151Z (1 day ago)
- Versions: 394
- Dependent Packages: 10
- Dependent Repositories: 1
- Downloads: 2,314 Last month
-
Rankings:
- Dependent packages count: 1.996%
- Downloads: 2.165%
- Forks count: 3.928%
- Average: 4.783%
- Stargazers count: 5.123%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/exchange-core-irec
An IREC based EACs product and matching
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/exchange-core#readme
- Licenses: MIT
- Latest release: 1.0.9 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:26.648Z (1 day ago)
- Versions: 411
- Dependent Packages: 2
- Dependent Repositories: 2
- Downloads: 2,423 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Downloads: 1.872%
- Forks count: 3.928%
- Average: 4.817%
- Stargazers count: 5.123%
- Dependent repos count: 7.929%
- Dependent packages count: 8.713%
- Maintainers (7)
npmjs.org: @energyweb/origin-device-registry-irec-form-api
An API for form based version of I-REC compatible registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-device-registry-irec-form-api#readme
- Licenses: GPL-3.0-or-later
- Latest release: 2.0.1 (published over 3 years ago)
- Last Synced: 2025-04-25T14:41:27.761Z (1 day ago)
- Versions: 234
- Dependent Packages: 4
- Dependent Repositories: 2
- Downloads: 1,122 Last month
-
Rankings:
- Downloads: 2.914%
- Forks count: 3.928%
- Dependent packages count: 4.385%
- Average: 4.856%
- Stargazers count: 5.123%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/origin
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin#readme
- Licenses: GPL-3.0-or-later
- Latest release: 4.0.2 (published about 5 years ago)
- Last Synced: 2025-04-25T14:41:16.591Z (1 day ago)
- Versions: 396
- Dependent Packages: 7
- Dependent Repositories: 1
- Downloads: 2,325 Last month
-
Rankings:
- Downloads: 2.051%
- Dependent packages count: 2.686%
- Forks count: 3.928%
- Average: 4.898%
- Stargazers count: 5.123%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/market
This package contains all the marketplace functionality for trading certificates.
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/market#readme
- Licenses: GPL-3.0-or-later
- Latest release: 6.0.2 (published about 5 years ago)
- Last Synced: 2025-04-25T14:41:23.903Z (1 day ago)
- Versions: 396
- Dependent Packages: 7
- Dependent Repositories: 1
- Downloads: 2,347 Last month
-
Rankings:
- Downloads: 2.164%
- Dependent packages count: 2.686%
- Forks count: 3.928%
- Average: 4.921%
- Stargazers count: 5.123%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/issuer-irec-api
NestJS module for interacting with renewable energy certificates with IREC connectivity
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/issuer-irec-api#readme
- Licenses: MIT
- Latest release: 0.6.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:19.009Z (1 day ago)
- Versions: 50
- Dependent Packages: 5
- Dependent Repositories: 1
- Downloads: 373 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Dependent packages count: 3.592%
- Forks count: 3.928%
- Average: 4.982%
- Stargazers count: 5.123%
- Downloads: 5.208%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/origin-energy-api
An API for Smart meter reads
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-energy-api#readme
- Licenses: MIT
- Latest release: 1.0.9 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:14.714Z (1 day ago)
- Versions: 72
- Dependent Packages: 4
- Dependent Repositories: 1
- Downloads: 363 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Forks count: 3.928%
- Dependent packages count: 4.385%
- Downloads: 4.742%
- Average: 5.036%
- Stargazers count: 5.123%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/asset-registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/asset-registry#readme
- Licenses: GPL-3.0
- Latest release: 1.3.3 (published over 5 years ago)
- Last Synced: 2025-04-25T14:41:22.612Z (1 day ago)
- Versions: 124
- Dependent Packages: 7
- Dependent Repositories: 1
- Downloads: 735 Last month
-
Rankings:
- Dependent packages count: 2.686%
- Downloads: 3.438%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Average: 5.175%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/market-matcher-core
A matcher-market matching core library
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/market-matcher-core#readme
- Licenses: GPL-3.0-or-later
- Latest release: 3.0.2 (published about 5 years ago)
- Last Synced: 2025-04-25T14:41:29.139Z (1 day ago)
- Versions: 315
- Dependent Packages: 4
- Dependent Repositories: 1
- Downloads: 1,849 Last month
-
Rankings:
- Downloads: 2.616%
- Forks count: 3.928%
- Dependent packages count: 4.385%
- Stargazers count: 5.123%
- Average: 5.351%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/origin-backend-app
This is a bootstrap project for Origin API
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-backend-app#readme
- Licenses: GPL-3.0-or-later
- Latest release: 1.5.4 (published over 3 years ago)
- Last Synced: 2025-04-25T14:41:26.256Z (1 day ago)
- Versions: 1,224
- Dependent Packages: 2
- Dependent Repositories: 2
- Downloads: 8,502 Last month
-
Rankings:
- Downloads: 1.201%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Average: 5.379%
- Dependent repos count: 7.929%
- Dependent packages count: 8.713%
- Maintainers (7)
npmjs.org: @energyweb/origin-backend-irec-app
This is a bootstrap project for Origin API that uses I-REC API connection
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-backend-irec-app#readme
- Licenses: MIT
- Latest release: 2.0.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:16.781Z (1 day ago)
- Versions: 187
- Dependent Packages: 2
- Dependent Repositories: 1
- Downloads: 909 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Downloads: 2.851%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Average: 5.443%
- Dependent packages count: 8.713%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-theme
Material-UI theme configuration and helper functions for styling components used for building Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/ui/theme/README.md
- Licenses: MIT
- Latest release: 0.3.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:14.612Z (1 day ago)
- Versions: 41
- Dependent Packages: 3
- Dependent Repositories: 2
- Downloads: 196 Last month
-
Rankings:
- Forks count: 3.928%
- Downloads: 5.026%
- Stargazers count: 5.123%
- Average: 5.551%
- Dependent packages count: 5.751%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-assets
Assets library for building Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/ui/assets/README.md
- Licenses: MIT
- Latest release: 0.3.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:20.896Z (1 day ago)
- Versions: 40
- Dependent Packages: 3
- Dependent Repositories: 2
- Downloads: 205 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Downloads: 5.17%
- Average: 5.58%
- Dependent packages count: 5.751%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-utils
UI general utils library for building Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/ui/utils/README.md
- Licenses: MIT
- Latest release: 0.1.5 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:27.859Z (1 day ago)
- Versions: 37
- Dependent Packages: 3
- Dependent Repositories: 2
- Downloads: 182 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Downloads: 5.645%
- Average: 5.675%
- Dependent packages count: 5.751%
- Dependent repos count: 7.929%
- Maintainers (7)
npmjs.org: @energyweb/erc-test-contracts
## Warning
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/erc-test-contracts#readme
- Licenses: GPL-3.0-only
- Latest release: 1.2.2 (published over 5 years ago)
- Last Synced: 2025-04-25T14:41:14.362Z (1 day ago)
- Versions: 62
- Dependent Packages: 3
- Dependent Repositories: 1
- Downloads: 480 Last month
-
Rankings:
- Forks count: 3.928%
- Downloads: 4.213%
- Stargazers count: 5.123%
- Dependent packages count: 5.751%
- Average: 5.944%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-localization
Localization library for building Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/ui/localization/README.md
- Licenses: MIT
- Latest release: 0.4.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:25.491Z (1 day ago)
- Versions: 40
- Dependent Packages: 4
- Dependent Repositories: 1
- Downloads: 240 Last month
-
Rankings:
- Forks count: 3.928%
- Dependent packages count: 4.385%
- Stargazers count: 5.123%
- Downloads: 5.844%
- Average: 5.996%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/market-matcher
<h1 align="center"> <br> <a href="https://www.energyweb.org/"><img src="https://www.energyweb.org/wp-content/uploads/2019/04/logo-brand.png" alt="EnergyWeb" width="150"></a> <br> EnergyWeb Origin <br> <h2 align="center">Market Matcher</h2> <
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/market-matcher#readme
- Licenses: GPL-3.0-or-later
- Latest release: 2.4.2 (published about 5 years ago)
- Last Synced: 2025-04-25T14:41:16.355Z (1 day ago)
- Versions: 398
- Dependent Packages: 2
- Dependent Repositories: 1
- Downloads: 2,336 Last month
-
Rankings:
- Downloads: 2.204%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Average: 6.134%
- Dependent packages count: 8.713%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-shared-state
Library for managing shared state elements used for building Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/ui/shared-state/README.md
- Licenses: MIT
- Latest release: 0.1.5 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:28.517Z (1 day ago)
- Versions: 38
- Dependent Packages: 3
- Dependent Repositories: 1
- Downloads: 235 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent packages count: 5.751%
- Downloads: 6.12%
- Average: 6.325%
- Dependent repos count: 10.702%
- Maintainers (7)
npmjs.org: @energyweb/event-listener
## Warning
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/event-listener#readme
- Licenses: GPL-3.0-or-later
- Latest release: 3.4.2 (published about 5 years ago)
- Last Synced: 2025-04-25T14:41:20.282Z (1 day ago)
- Versions: 397
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 2,622 Last month
-
Rankings:
- Downloads: 1.856%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Average: 8.537%
- Dependent repos count: 10.702%
- Dependent packages count: 21.076%
- Maintainers (7)
npmjs.org: @energyweb/exchange-react-query-client
React Query Client library for interacting with the Exchange
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/api-clients/react-query/exchange#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:22.756Z (1 day ago)
- Versions: 44
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 224 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Downloads: 5.353%
- Average: 9.237%
- Dependent repos count: 10.702%
- Dependent packages count: 21.076%
- Maintainers (7)
npmjs.org: @energyweb/origin-organization-irec-api-react-query-client
React Query Client library interacting with the Origin Organization IREC API
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/api-clients/react-query/origin-organization-irec-api#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:19.721Z (1 day ago)
- Versions: 43
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 212 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Downloads: 5.424%
- Average: 9.251%
- Dependent repos count: 10.702%
- Dependent packages count: 21.076%
- Maintainers (7)
npmjs.org: @energyweb/origin-backend-react-query-client
React Query Client library interacting with the Origin Backend
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/api-clients/react-query/origin-backend#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:25.702Z (1 day ago)
- Versions: 44
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 226 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Downloads: 5.484%
- Average: 9.263%
- Dependent repos count: 10.702%
- Dependent packages count: 21.076%
- Maintainers (7)
npmjs.org: @energyweb/origin-device-registry-api-react-query-client
React Query Client library interacting with the Origin Device Registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/api-clients/react-query/origin-device-registry-api#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:28.967Z (1 day ago)
- Versions: 43
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 213 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Downloads: 5.534%
- Average: 9.273%
- Dependent repos count: 10.702%
- Dependent packages count: 21.076%
- Maintainers (7)
npmjs.org: @energyweb/origin-device-registry-irec-local-api-react-query-client
React Query Client library interacting with the Origin I-REC Device Registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/api-clients/react-query/origin-device-registry-irec-local-api#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:22.672Z (1 day ago)
- Versions: 43
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 206 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Downloads: 5.64%
- Average: 9.294%
- Dependent repos count: 10.702%
- Dependent packages count: 21.076%
- Maintainers (7)
npmjs.org: @energyweb/exchange-irec-react-query-client
React Query Client library interacting with the I-REC Exchange
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/api-clients/react-query/exchange-irec#readme
- Licenses: MIT
- Latest release: 1.1.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:18.420Z (1 day ago)
- Versions: 44
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 226 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Downloads: 5.713%
- Average: 9.308%
- Dependent repos count: 10.702%
- Dependent packages count: 21.076%
- Maintainers (7)
npmjs.org: @energyweb/origin-energy-api-react-query-client
React Query Client library interacting with the Energy API
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/api-clients/react-query/origin-energy-api#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:27.876Z (1 day ago)
- Versions: 37
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 186 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Downloads: 5.903%
- Average: 9.346%
- Dependent repos count: 10.702%
- Dependent packages count: 21.076%
- Maintainers (7)
npmjs.org: @energyweb/issuer-irec-api-react-query-client
React Query Client library interacting with the Issuer IREC API
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/api-clients/react-query/issuer-irec-api#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:27.154Z (1 day ago)
- Versions: 44
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 244 Last month
-
Rankings:
- Forks count: 3.928%
- Stargazers count: 5.123%
- Downloads: 6.072%
- Average: 9.38%
- Dependent repos count: 10.702%
- Dependent packages count: 21.076%
- Maintainers (7)
npmjs.org: @energyweb/migrations-irec
Migrations for deploying the Origin SDK smart contracts for I-REC API integration
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/migrations-irec#readme
- Licenses: MIT
- Latest release: 1.4.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:17.322Z (1 day ago)
- Versions: 187
- Dependent Packages: 2
- Dependent Repositories: 0
- Downloads: 901 Last month
- Docker Downloads: 31
-
Rankings:
- Docker downloads count: 1.338%
- Downloads: 2.667%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent packages count: 8.713%
- Average: 9.832%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/origin-device-registry-irec-form-api-client
Client library interacting with the Origin I-REC Device Registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-device-registry-irec-form-api-client#readme
- Licenses: GPL-3.0-or-later
- Latest release: 1.0.3 (published over 3 years ago)
- Last Synced: 2025-04-25T14:41:28.418Z (1 day ago)
- Versions: 241
- Dependent Packages: 5
- Dependent Repositories: 0
- Downloads: 1,192 Last month
-
Rankings:
- Downloads: 2.666%
- Dependent packages count: 3.592%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Average: 10.507%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/issuer-api-client
Client library interacting with the Issuer API
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/issuer-api-client#readme
- Licenses: MIT
- Latest release: 0.4.0 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:23.923Z (1 day ago)
- Versions: 550
- Dependent Packages: 3
- Dependent Repositories: 0
- Downloads: 3,222 Last month
-
Rankings:
- Downloads: 1.744%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent packages count: 5.751%
- Average: 10.754%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/exchange-client
Client library interacting with the Exchange
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/exchange-client#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:24.686Z (1 day ago)
- Versions: 472
- Dependent Packages: 3
- Dependent Repositories: 0
- Downloads: 2,734 Last month
-
Rankings:
- Downloads: 1.941%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent packages count: 5.751%
- Average: 10.794%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/exchange-irec-client
Client library interacting with the I-REC Exchange
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/exchange-irec-client#readme
- Licenses: MIT
- Latest release: 1.1.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:24.266Z (1 day ago)
- Versions: 417
- Dependent Packages: 3
- Dependent Repositories: 0
- Downloads: 2,446 Last month
-
Rankings:
- Downloads: 2.15%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent packages count: 5.751%
- Average: 10.835%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/origin-organization-irec-api-client
Client library interacting with the Origin Organization IREC API
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-organization-irec-api-client#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:22.674Z (1 day ago)
- Versions: 473
- Dependent Packages: 2
- Dependent Repositories: 0
- Downloads: 3,269 Last month
-
Rankings:
- Downloads: 1.891%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent packages count: 8.713%
- Average: 11.376%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/origin-device-registry-irec-local-api-client
Client library interacting with the Origin I-REC Device Registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-device-registry-irec-local-api-client#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:15.375Z (1 day ago)
- Versions: 311
- Dependent Packages: 2
- Dependent Repositories: 0
- Downloads: 2,196 Last month
-
Rankings:
- Downloads: 2.284%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent packages count: 8.713%
- Average: 11.455%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/origin-device-registry-api-client
Client library interacting with the Origin Device Registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-device-registry-api-client#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:22.671Z (1 day ago)
- Versions: 310
- Dependent Packages: 2
- Dependent Repositories: 0
- Downloads: 2,434 Last month
-
Rankings:
- Downloads: 2.517%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent packages count: 8.713%
- Average: 11.501%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-irec-core
- Homepage: https://github.com/energywebfoundation/origin#readme
- Licenses: GPL-3.0-or-later
- Latest release: 0.2.2 (published over 3 years ago)
- Last Synced: 2025-04-25T14:41:23.277Z (1 day ago)
- Versions: 241
- Dependent Packages: 2
- Dependent Repositories: 0
- Downloads: 1,429 Last month
-
Rankings:
- Downloads: 2.618%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent packages count: 8.713%
- Average: 11.521%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/origin-energy-api-client
Client library interacting with the Origin Energy API
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/origin-energy-api-client#readme
- Licenses: MIT
- Latest release: 1.1.7 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:17.405Z (1 day ago)
- Versions: 164
- Dependent Packages: 2
- Dependent Repositories: 0
- Downloads: 815 Last month
-
Rankings:
- Downloads: 3.454%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Dependent packages count: 8.713%
- Average: 11.689%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-exchange-view
View layer implementation for the Exchange part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/exchange/view/README.md
- Licenses: MIT
- Latest release: 0.3.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:20.722Z (1 day ago)
- Versions: 40
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 202 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 10.75%
- Average: 12.811%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-exchange-data
Data layer implementation for the Exchange part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/exchange/data/README.md
- Licenses: MIT
- Latest release: 0.3.2 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:21.138Z (1 day ago)
- Versions: 39
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 204 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 10.75%
- Average: 12.811%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/issuer-irec-api-client
Client library interacting with the Issuer IREC API
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/issuer-irec-api-client#readme
- Licenses: MIT
- Latest release: 1.0.4 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:22.579Z (1 day ago)
- Versions: 59
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 280 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 11.009%
- Average: 12.863%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-exchange-logic
Logic layer implementation for the Exchange part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/exchange/logic/README.md
- Licenses: MIT
- Latest release: 0.3.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:26.647Z (1 day ago)
- Versions: 40
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 197 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 11.515%
- Average: 12.964%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-organization-view
View layer implementation for the Organization's part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/organization/view/README.md
- Licenses: MIT
- Latest release: 0.3.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:29.767Z (1 day ago)
- Versions: 39
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 198 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 11.515%
- Average: 12.964%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-certificate-view
View layer implementation for the Certificate part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/certificate/view/README.md
- Licenses: MIT
- Latest release: 0.3.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:19.574Z (1 day ago)
- Versions: 42
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 217 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 11.773%
- Average: 13.016%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-device-logic
Logic layer implementation for the Device part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/device/logic/README.md
- Licenses: MIT
- Latest release: 0.3.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:17.730Z (1 day ago)
- Versions: 39
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 199 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 11.773%
- Average: 13.016%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-user-view
View layer implementation for the User's part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/user/view/README.md
- Licenses: MIT
- Latest release: 0.4.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:25.968Z (1 day ago)
- Versions: 39
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 206 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 11.883%
- Average: 13.038%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-device-data
Data layer implementation for the Device part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/device/data/README.md
- Licenses: MIT
- Latest release: 0.3.2 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:23.430Z (1 day ago)
- Versions: 40
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 203 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 11.883%
- Average: 13.038%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-user-data
Data layer implementation for the User part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/user/data/README.md
- Licenses: MIT
- Latest release: 0.4.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:19.143Z (1 day ago)
- Versions: 39
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 189 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 12.166%
- Average: 13.094%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-device-view
View layer implementation for the Device part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/device/view/README.md
- Licenses: MIT
- Latest release: 0.3.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:23.373Z (1 day ago)
- Versions: 39
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 191 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 12.258%
- Average: 13.113%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-organization-logic
Logic layer implementation for the Organization's part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/organization/logic/README.md
- Licenses: MIT
- Latest release: 0.3.3 (published about 3 years ago)
- Last Synced: 2024-11-29T22:53:50.105Z (5 months ago)
- Versions: 40
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 87 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 12.258%
- Average: 13.113%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-certificate-data
Data layer implementation for the Certificate part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/certificate/data/README.md
- Licenses: MIT
- Latest release: 0.4.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:28.544Z (1 day ago)
- Versions: 41
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 202 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 12.554%
- Average: 13.172%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-organization-data
Data layer implementation for the Organization's part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/organization/data/README.md
- Licenses: MIT
- Latest release: 0.3.2 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:26.574Z (1 day ago)
- Versions: 38
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 185 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 12.626%
- Average: 13.186%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-certificate-logic
Logic layer implementation for the Certificate part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/certificate/logic/README.md
- Licenses: MIT
- Latest release: 0.3.3 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:25.700Z (1 day ago)
- Versions: 42
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 205 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 12.848%
- Average: 13.231%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-user-logic
Logic layer implementation for the User part of Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/user/logic/README.md
- Licenses: MIT
- Latest release: 0.4.1 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:18.285Z (1 day ago)
- Versions: 41
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 211 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Downloads: 12.926%
- Average: 13.246%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-web3
React library for managing connection to blockchain wallet
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/ui/web3/README.md
- Licenses: MIT
- Latest release: 0.2.2 (published about 3 years ago)
- Last Synced: 2025-04-25T14:41:23.278Z (1 day ago)
- Versions: 21
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 125 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Average: 13.337%
- Downloads: 13.378%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/origin-ui-blockchain
Utilities library for managing blockchain interactions on Origin marketplace user interface
- Homepage: https://github.com/energywebfoundation/origin/blob/master/packages/ui/libs/ui/blockchain/README.md
- Licenses: GPL-3.0-or-later
- Latest release: 0.1.0 (published over 3 years ago)
- Last Synced: 2025-04-25T14:41:17.176Z (1 day ago)
- Versions: 18
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 86 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Average: 13.691%
- Downloads: 15.148%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (7)
npmjs.org: @energyweb/exchange-ui-core
- Homepage: https://github.com/energywebfoundation/origin#readme
- Licenses: GPL-3.0-or-later
- Latest release: 1.4.3 (published over 3 years ago)
- Last Synced: 2025-04-25T14:41:22.987Z (1 day ago)
- Versions: 485
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 2,836 Last month
-
Rankings:
- Downloads: 1.975%
- Forks count: 3.928%
- Stargazers count: 5.123%
- Average: 13.865%
- Dependent packages count: 21.076%
- Dependent repos count: 37.225%
- Maintainers (7)
npmjs.org: @energyweb/origin-device-registry-irec-form-api-react-query-client
React Query Client library interacting with the Origin I-REC Device Registry
- Homepage: https://github.com/energywebfoundation/origin/tree/master/packages/api-clients/react-query/origin-device-registry-irec-form-api#readme
- Licenses: GPL-3.0-or-later
- Latest release: 0.0.2-alpha.1629981196.0 (published over 3 years ago)
- Last Synced: 2025-04-25T14:41:25.111Z (1 day ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 9 Last month
-
Rankings:
- Forks count: 4.607%
- Stargazers count: 7.147%
- Dependent packages count: 16.224%
- Average: 20.906%
- Dependent repos count: 25.328%
- Downloads: 51.222%
- Maintainers (7)
Dependencies
- prettier 2.5.1
- pretty-quick 3.1.3
- concurrently 6.5.1
- ganache-cli 6.12.2
- lerna 4.0.0
- wait-on 6.0.0
- ./.github/actions/build_id * composite
- actions/checkout v2 composite
- actions/setup-node v2-beta composite
- rlespinasse/github-slug-action v3.x composite
- styfle/cancel-workflow-action 0.9.1 composite
- postgres * docker
- actions/checkout v2 composite
- actions/setup-node v2-beta composite
- styfle/cancel-workflow-action 0.9.1 composite
- postgres * docker
- ./.github/actions/build_id * composite
- actions/checkout v2 composite
- actions/setup-node v2-beta composite
- rlespinasse/github-slug-action v3.x composite
- styfle/cancel-workflow-action 0.9.1 composite
- postgres * docker
- actions/checkout v2 composite
- actions/setup-node v2-beta composite
- fregante/setup-git-user v1 composite
- rlespinasse/github-slug-action v3.x composite
- styfle/cancel-workflow-action 0.9.1 composite
- postgres * docker
- node 14-alpine build
- node 14-alpine build
- energyweb/origin-backend-app canary build
- energyweb/origin-backend-app latest build
- energyweb/origin-backend-irec-app canary build
- energyweb/origin-backend-irec-app latest build
- nginx alpine build
- nginx alpine build
- @types minimatch
- ansi-styles 4.3.0
- array-differ 3.0.0
- array-union 2.1.0
- arrify 2.0.1
- balanced-match 1.0.0
- brace-expansion 1.1.11
- chalk 3.0.0
- color-convert 2.0.1
- color-name 1.1.4
- concat-map 0.0.1
- cross-spawn 7.0.3
- end-of-stream 1.4.4
- execa 4.1.0
- find-up 4.1.0
- get-stream 5.2.0
- has-flag 4.0.0
- human-signals 1.1.1
- ignore 5.1.8
- is-stream 2.0.0
- isexe 2.0.0
- locate-path 5.0.0
- merge-stream 2.0.0
- mimic-fn 2.1.0
- minimatch 3.0.4
- mri 1.1.6
- multimatch 4.0.0
- npm-run-path 4.0.1
- once 1.4.0
- onetime 5.1.2
- p-limit 2.3.0
- p-locate 4.1.0
- p-try 2.2.0
- path-exists 4.0.0
- path-key 3.1.1
- prettier 2.5.1
- pretty-quick [email protected]
- pump 3.0.0
- shebang-command 2.0.0
- shebang-regex 3.0.0
- signal-exit 3.0.3
- strip-final-newline 2.0.0
- supports-color 7.2.0
- which 2.0.2
- wrappy 1.0.2
- 628 dependencies
- 3839 dependencies
- @energyweb/exchange 1.13.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- barrelsby 2.3.2 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- orval 6.5.1 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- react-query 3.34.0
- @energyweb/exchange 1.13.1 development
- @energyweb/exchange-irec 1.2.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- barrelsby 2.3.2 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- orval 6.5.1 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- react-query 3.34.0
- @energyweb/issuer-irec-api 0.5.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- barrelsby 2.3.2 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- orval 6.5.1 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- react-query 3.34.0
- @energyweb/origin-backend 11.2.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- barrelsby 2.3.2 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- orval 6.5.1 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typeorm 0.2.41 development
- typescript 4.5.4 development
- axios 0.24.0
- react-query 3.34.0
- @energyweb/origin-device-registry-api 1.1.1 development
- @nestjs/passport 8.0.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @types/chai 4.3.0 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- barrelsby 2.3.2 development
- chai 4.3.4 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- orval 6.5.1 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- react-query 3.34.0
- @energyweb/origin-device-registry-irec-local-api 1.1.1 development
- @energyweb/origin-organization-irec-api 1.8.1 development
- @nestjs/passport 8.0.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- barrelsby 2.3.2 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- orval 6.5.1 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- react-query 3.34.0
- @nestjs/passport 8.0.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- barrelsby 2.3.2 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- orval 6.5.1 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/origin-energy-api 1.0.7
- axios 0.24.0
- react-query 3.34.0
- @energyweb/origin-organization-irec-api 1.8.1 development
- @nestjs/common 8.1.1 development
- @nestjs/core 8.1.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/supertest 2.0.11 development
- barrelsby 2.3.2 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- orval 6.5.1 development
- prettier 2.5.1 development
- supertest 6.1.6 development
- supertest-capture-error 1.0.0 development
- ts-node 9.1.1 development
- typeorm 0.2.41 development
- typescript 4.5.4 development
- axios 0.24.0
- react-query 3.34.0
- @nestjs/testing 8.1.1 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/supertest 2.0.11 development
- ethers 5.3.1 development
- ganache-core 2.13.2 development
- mocha 9.1.3 development
- moment 2.29.2 development
- superagent-use 0.1.0 development
- supertest 6.1.6 development
- supertest-capture-error 1.0.0 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/exchange 1.10.0
- @energyweb/exchange-io-erc1888 1.2.0
- @energyweb/exchange-irec 1.0.3
- @energyweb/issuer 4.0.0
- @energyweb/issuer-api 0.3.0
- @energyweb/origin-backend 11.0.0
- @energyweb/origin-backend-core 8.0.2
- @energyweb/origin-backend-utils 1.6.1
- @energyweb/origin-device-registry-api 1.0.0
- @energyweb/origin-device-registry-irec-form-api 2.0.1
- @energyweb/origin-organization-irec-api 1.5.0
- @energyweb/utils-general 11.0.3
- @nestjs-modules/mailer 1.5.1
- @nestjs/cli 8.1.4
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/swagger 5.1.4
- @nestjs/typeorm 8.0.2
- body-parser 1.19.1
- class-validator 0.13.2
- cors 2.8.5
- mandrill-nodemailer-transport 1.2.1
- swagger-ui-express 4.2.0
- typeorm 0.2.41
- @nestjs/testing 8.1.1 development
- @types/cron 1.7.3 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/supertest 2.0.11 development
- ganache-core 2.13.2 development
- mocha 9.1.3 development
- supertest 6.1.6 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/exchange 1.13.1
- @energyweb/exchange-io-erc1888 1.4.1
- @energyweb/exchange-irec 1.2.1
- @energyweb/issuer 6.0.1
- @energyweb/issuer-irec-api 0.5.1
- @energyweb/issuer-irec-api-wrapper 1.1.1
- @energyweb/origin-backend 11.2.1
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-utils 1.8.1
- @energyweb/origin-device-registry-api 1.1.1
- @energyweb/origin-device-registry-irec-local-api 1.1.1
- @energyweb/origin-energy-api 1.0.7
- @energyweb/origin-organization-irec-api 1.8.1
- @energyweb/utils-general 11.2.1
- @nestjs-modules/mailer 1.5.1
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/swagger 5.1.4
- @nestjs/typeorm 8.0.2
- body-parser 1.19.1
- class-validator 0.13.2
- cors 2.8.5
- mandrill-nodemailer-transport 1.2.1
- swagger-ui-express 4.2.0
- typeorm 0.2.41
- @nestjs/cli 8.1.4 development
- @nestjs/schematics 8.0.4 development
- @nestjs/testing 8.1.1 development
- @types/chai 4.3.0 development
- @types/express 4.17.13 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- chai 4.3.4 development
- mocha 9.1.3 development
- superagent-use 0.1.0 development
- supertest 6.1.6 development
- supertest-capture-error 1.0.0 development
- ts-node 9.1.1 development
- ts-sinon 2.0.2 development
- typescript 4.5.4 development
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-utils 1.8.1
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/swagger 5.1.4
- @nestjs/typeorm 8.0.2
- class-sanitizer 1.0.1
- class-transformer 0.3.1
- class-validator 0.13.2
- reflect-metadata 0.1.13
- rxjs 7.4.0
- typeorm 0.2.41
- @energyweb/origin-device-registry-api 1.1.1 development
- @nestjs/passport 8.0.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @openapitools/openapi-generator-cli 2.4.26 development
- @types/chai 4.3.0 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- chai 4.3.4 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- @nestjs/cli 8.1.4 development
- @nestjs/schematics 8.0.4 development
- @nestjs/testing 8.1.1 development
- @types/dotenv 6.1.1 development
- @types/express 4.17.13 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- @types/uuid 8.3.4 development
- dotenv 10.0.0 development
- mocha 9.1.3 development
- moment 2.29.2 development
- superagent-use 0.1.0 development
- supertest 6.1.6 development
- supertest-capture-error 1.0.0 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/origin-backend 11.0.0
- @energyweb/origin-backend-core 8.0.2
- @energyweb/origin-backend-utils 1.6.1
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/swagger 5.1.4
- @nestjs/typeorm 8.0.2
- class-sanitizer 1.0.1
- class-transformer 0.3.1
- class-validator 0.13.2
- ethers 5.3.1
- reflect-metadata 0.1.13
- rxjs 7.4.0
- typeorm 0.2.41
- uuid 8.3.2
- @energyweb/origin-backend 11.0.0 development
- @energyweb/origin-device-registry-irec-form-api 2.0.1 development
- @nestjs/passport 8.0.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @openapitools/openapi-generator-cli 2.4.26 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- @nestjs/cli 8.1.4 development
- @nestjs/schematics 8.0.4 development
- @nestjs/testing 8.1.1 development
- @types/chai 4.3.0 development
- @types/dotenv 6.1.1 development
- @types/express 4.17.13 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- chai 4.3.4 development
- dotenv 10.0.0 development
- mocha 9.1.3 development
- superagent-use 0.1.0 development
- supertest 6.1.6 development
- supertest-capture-error 1.0.0 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/issuer-irec-api-wrapper 1.1.1
- @energyweb/origin-backend 11.2.1
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-utils 1.8.1
- @energyweb/origin-device-registry-api 1.1.1
- @energyweb/origin-organization-irec-api 1.8.1
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/schedule 1.0.1
- @nestjs/swagger 5.1.4
- @nestjs/typeorm 8.0.2
- class-sanitizer 1.0.1
- class-transformer 0.3.1
- class-validator 0.13.2
- ethers 5.3.1
- reflect-metadata 0.1.13
- rxjs 7.4.0
- typeorm 0.2.41
- @energyweb/origin-device-registry-irec-local-api 1.1.1 development
- @energyweb/origin-organization-irec-api 1.8.1 development
- @nestjs/passport 8.0.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @openapitools/openapi-generator-cli 2.4.26 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- @nestjs/common 8.1.1 development
- @nestjs/core 8.1.1 development
- @nestjs/testing 8.1.1 development
- @types/chai 4.3.0 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- chai 4.3.4 development
- influx 5.9.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- superagent-use 0.1.0 development
- supertest 6.1.6 development
- supertest-capture-error 1.0.0 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/energy-api-influxdb 0.8.1
- @energyweb/origin-backend-core 8.2.1
- @nestjs/config 1.0.2
- @nestjs/passport 8.0.1
- @nestjs/swagger 5.1.4
- @nestjs/passport 8.0.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @openapitools/openapi-generator-cli 2.4.26 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/origin-energy-api 1.0.7
- axios 0.24.0
- @nestjs/cli 8.1.4 development
- @nestjs/schematics 8.0.4 development
- @nestjs/testing 8.1.1 development
- @types/chai 4.3.0 development
- @types/express 4.17.13 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- chai 4.3.4 development
- mocha 9.1.3 development
- superagent-use 0.1.0 development
- supertest 6.1.6 development
- supertest-capture-error 1.0.0 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/issuer-irec-api-wrapper 1.1.1
- @energyweb/origin-backend 11.2.1
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-utils 1.8.1
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/schedule 1.0.1
- @nestjs/swagger 5.1.4
- @nestjs/typeorm 8.0.2
- class-transformer 0.3.1
- class-validator 0.13.2
- reflect-metadata 0.1.13
- rxjs 7.4.0
- typeorm 0.2.41
- @energyweb/origin-organization-irec-api 1.8.1 development
- @nestjs/common 8.1.1 development
- @nestjs/core 8.1.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @openapitools/openapi-generator-cli 2.4.26 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/supertest 2.0.11 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- supertest 6.1.6 development
- supertest-capture-error 1.0.0 development
- ts-node 9.1.1 development
- typeorm 0.2.41 development
- typescript 4.5.4 development
- axios 0.24.0
- @nestjs/cli 8.1.4 development
- @nestjs/schematics 8.0.4 development
- @nestjs/testing 8.1.1 development
- @types/bcryptjs 2.4.2 development
- @types/body-parser 1.19.2 development
- @types/chai 4.3.0 development
- @types/cors 2.8.12 development
- @types/express 4.17.13 development
- @types/jest 27.4.0 development
- @types/jsonwebtoken 8.5.8 development
- @types/mocha 9.0.0 development
- @types/multer 1.4.7 development
- @types/node 14.18.10 development
- @types/nodemailer 6.4.4 development
- @types/passport 1.0.7 development
- @types/passport-jwt 3.0.6 development
- @types/passport-local 1.0.34 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- @types/uuid 8.3.4 development
- @types/websocket 1.0.5 development
- @types/ws 8.2.2 development
- chai 4.3.4 development
- jest 27.4.5 development
- mocha 9.1.3 development
- nodemailer 6.7.2 development
- polly-js 1.8.3 development
- shx 0.3.3 development
- supertest 6.1.6 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-utils 1.8.1
- @energyweb/utils-general 11.2.1
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/jwt 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/platform-express 8.1.1
- @nestjs/swagger 5.1.4
- @nestjs/typeorm 8.0.2
- bcryptjs 2.4.3
- body-parser 1.19.1
- class-transformer 0.3.1
- class-validator 0.13.2
- dotenv 10.0.0
- ethers 5.3.1
- express 4.17.2
- moment 2.29.2
- multer 1.4.4
- passport 0.5.2
- passport-jwt 4.0.0
- passport-local 1.0.0
- reflect-metadata 0.1.13
- rxjs 7.4.0
- typeorm 0.2.41
- uuid 8.3.2
- @energyweb/origin-backend 11.2.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @openapitools/openapi-generator-cli 2.4.26 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typeorm 0.2.41 development
- typescript 4.5.4 development
- axios 0.24.0
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- mocha 9.1.3 development
- typescript 4.5.4 development
- class-transformer 0.3.1
- class-validator 0.13.2
- ethers 5.3.1
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- mocha 9.1.3 development
- typescript 4.5.4 development
- @energyweb/issuer 4.0.0
- @energyweb/origin-backend-app 1.5.4
- @energyweb/origin-backend-core 8.0.2
- @energyweb/origin-backend-utils 1.6.1
- @energyweb/utils-general 11.0.3
- @types/pg 8.6.4
- commander 6.2.1
- dotenv 10.0.0
- ethers 5.3.1
- pg 8.7.1
- winston 3.3.3
- winston-transport 4.4.1
- write-json-file 5.0.0
- yaeti 1.0.2
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- mocha 9.1.3 development
- typescript 4.5.4 development
- @energyweb/exchange 1.13.1
- @energyweb/issuer 6.0.1
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-irec-app 1.5.1
- @energyweb/origin-backend-utils 1.8.1
- @energyweb/utils-general 11.2.1
- @nestjs/core 8.1.1
- @nestjs/testing 8.1.1
- @nestjs/typeorm 8.0.2
- @types/pg 8.6.4
- commander 6.2.1
- dotenv 10.0.0
- ethers 5.3.1
- pg 8.7.1
- typeorm 0.2.41
- winston 3.3.3
- winston-transport 4.4.1
- write-json-file 5.0.0
- yaeti 1.0.2
- @openzeppelin/contracts 4.4.2 development
- @openzeppelin/contracts-upgradeable 4.4.2 development
- @openzeppelin/truffle-upgrades 1.11.0 development
- @typechain/ethers-v5 7.0.1 development
- @types/chai 4.3.0 development
- @types/dotenv 6.1.1 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/supertest 2.0.11 development
- chai 4.3.4 development
- ethlint 1.2.5 development
- mocha 9.1.3 development
- shx 0.3.3 development
- solc 0.8.4 development
- solc-0.8 npm:[email protected] development
- solidity-docgen 0.5.16 development
- truffle 5.4.26 development
- truffle-typings 1.0.8 development
- ts-node 9.1.1 development
- typechain 6.1.0 development
- typescript 4.5.4 development
- winston-transport 4.4.1 development
- @energyweb/utils-general 11.2.1
- @ethersproject/abi 5.3.1
- @ethersproject/abstract-signer 5.3.0
- @ethersproject/contracts 5.3.0
- @ethersproject/providers 5.3.1
- @ethersproject/wallet 5.3.0
- dotenv 10.0.0
- ethers 5.3.1
- ew-precise-proofs-js 1.1.0
- ganache-cli 6.12.2
- moment 2.29.2
- winston 3.3.3
- @nestjs/cli 8.1.4 development
- @nestjs/common 8.1.1 development
- @nestjs/core 8.1.1 development
- @nestjs/cqrs 8.0.0 development
- @nestjs/schematics 8.0.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @types/chai 4.3.0 development
- @types/cryptr 4.0.1 development
- @types/express 4.17.13 development
- @types/jest 27.4.0 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- chai 4.3.4 development
- eslint-plugin-jest 25.3.4 development
- jest 27.4.5 development
- mocha 9.1.3 development
- polly-js 1.8.3 development
- prettier 2.5.1 development
- supertest 6.1.6 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/issuer 6.0.1
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-utils 1.8.1
- @energyweb/utils-general 11.2.1
- @nestjs/config 1.0.2
- @nestjs/passport 8.0.1
- @nestjs/schedule 1.0.1
- @nestjs/swagger 5.1.4
- class-validator 0.13.2
- cryptr 6.0.2
- ethers 5.3.1
- ew-precise-proofs-js 1.1.0
- ganache-cli 6.12.2
- moment 2.29.2
- moment-range 4.0.2
- pg 8.7.1
- rxjs 7.4.0
- swagger-ui-express 4.2.0
- typeorm 0.2.41
- @energyweb/issuer-api 0.6.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @openapitools/openapi-generator-cli 2.4.26 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- @nestjs/cli 8.1.4 development
- @nestjs/schematics 8.0.4 development
- @nestjs/testing 8.1.1 development
- @types/chai 4.3.0 development
- @types/express 4.17.13 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- chai 4.3.4 development
- ganache-cli 6.12.2 development
- mocha 9.1.3 development
- polly-js 1.8.3 development
- prettier 2.5.1 development
- supertest 6.1.6 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/issuer 6.0.1
- @energyweb/issuer-api 0.6.1
- @energyweb/issuer-irec-api-wrapper 1.1.1
- @energyweb/origin-backend 11.2.1
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-utils 1.8.1
- @energyweb/origin-device-registry-irec-local-api 1.1.1
- @energyweb/origin-organization-irec-api 1.8.1
- @energyweb/utils-general 11.2.1
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/schedule 1.0.1
- @nestjs/swagger 5.1.4
- @nestjs/typeorm 8.0.2
- class-transformer 0.3.1
- class-validator 0.13.2
- ethers 5.3.1
- ew-precise-proofs-js 1.1.0
- moment 2.29.2
- moment-range 4.0.2
- pg 8.7.1
- rxjs 7.4.0
- swagger-ui-express 4.2.0
- typeorm 0.2.41
- @energyweb/issuer-irec-api 0.5.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @openapitools/openapi-generator-cli 2.4.26 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- @types/chai 4.3.0 development
- @types/dotenv 6.1.1 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/qs 6.9.7 development
- chai 4.3.4 development
- dotenv 10.0.0 development
- mocha 9.1.3 development
- ts-node 9.1.1 development
- typedoc 0.22.10 development
- typedoc-plugin-markdown 3.11.8 development
- typescript 4.5.4 development
- @nestjs/common 8.1.1
- axios 0.24.0
- class-transformer 0.3.1
- class-validator 0.13.2
- form-data 4.0.0
- moment 2.29.2
- moment-timezone 0.5.34
- qs 6.10.2
- reflect-metadata 0.1.13
- @jest/globals 27.4.4 development
- @nestjs/cli 8.1.4 development
- @nestjs/schematics 8.0.4 development
- @types/bn.js 5.1.0 development
- @types/chai 4.3.0 development
- @types/express 4.17.13 development
- @types/jest 27.4.0 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- chai 4.3.4 development
- eslint-plugin-jest 25.3.4 development
- ganache-cli 6.12.2 development
- jest 27.4.5 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- supertest 6.1.6 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- wait-on 6.0.0 development
- @energyweb/exchange-core 3.2.5
- @energyweb/exchange-token-account 1.0.2
- @energyweb/issuer 6.0.1
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-utils 1.8.1
- @energyweb/utils-general 11.2.1
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/platform-express 8.1.1
- @nestjs/schedule 1.0.1
- @nestjs/swagger 5.1.4
- @nestjs/testing 8.1.1
- @nestjs/typeorm 8.0.2
- bn.js 5.2.0
- class-transformer 0.3.1
- class-validator 0.13.2
- ethers 5.3.1
- immutable 4.0.0
- moment 2.29.2
- moment-range 4.0.2
- pg 8.7.1
- polly-js 1.8.3
- reflect-metadata 0.1.13
- rxjs 7.4.0
- swagger-ui-express 4.2.0
- typeorm 0.2.41
- @energyweb/exchange 1.13.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @openapitools/openapi-generator-cli 2.4.26 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- @types/bn.js 5.1.0 development
- @types/chai 4.3.0 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- mocha 9.1.3 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @nestjs/common 8.1.1
- bn.js 5.2.0
- chai 4.3.4
- immutable 4.0.0
- moment 2.29.2
- rxjs 7.4.0
- @types/bn.js 5.1.0 development
- @types/chai 4.3.0 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- chai 4.3.4 development
- mocha 9.1.3 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/exchange-core 3.2.5
- @energyweb/utils-general 11.2.1
- @nestjs/common 8.1.1
- bn.js 5.2.0
- immutable 4.0.0
- moment 2.29.2
- moment-range 4.0.2
- rxjs 7.4.0
- @ethersproject/abi 5.3.1 development
- @ethersproject/abstract-provider 5.3.0 development
- @ethersproject/contracts 5.3.0 development
- @ethersproject/providers 5.3.1 development
- @nestjs/cli 8.1.4 development
- @types/chai 4.3.0 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- chai 4.3.4 development
- class-validator 0.13.2 development
- eslint-plugin-jest 25.3.4 development
- ganache-cli 6.12.2 development
- jest 27.4.5 development
- mocha 9.1.3 development
- polly-js 1.8.3 development
- prettier 2.5.1 development
- supertest 6.1.6 development
- ts-node 9.1.1 development
- typeorm 0.2.41 development
- typescript 4.5.4 development
- @energyweb/exchange 1.13.1
- @energyweb/exchange-core 3.2.5
- @energyweb/issuer 6.0.1
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-utils 1.8.1
- @energyweb/utils-general 11.2.1
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/typeorm 8.0.2
- ethers 5.3.1
- moment 2.29.2
- rxjs 7.4.0
- @nestjs/cli 8.1.4 development
- @nestjs/schematics 8.0.4 development
- @nestjs/testing 8.1.1 development
- @types/bn.js 5.1.0 development
- @types/chai 4.3.0 development
- @types/express 4.17.13 development
- @types/jest 27.4.0 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/superagent 4.1.15 development
- @types/supertest 2.0.11 development
- chai 4.3.4 development
- eslint-plugin-jest 25.3.4 development
- ganache-cli 6.12.2 development
- jest 27.4.5 development
- mocha 9.1.3 development
- polly-js 1.8.3 development
- prettier 2.5.1 development
- supertest 6.1.6 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/exchange 1.13.1
- @energyweb/exchange-core 3.2.5
- @energyweb/exchange-core-irec 1.0.7
- @energyweb/issuer 6.0.1
- @energyweb/issuer-api 0.6.1
- @energyweb/issuer-irec-api 0.5.1
- @energyweb/issuer-irec-api-wrapper 1.1.1
- @energyweb/origin-backend 11.2.1
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-utils 1.8.1
- @energyweb/origin-device-registry-api 1.1.1
- @energyweb/origin-device-registry-irec-local-api 1.1.1
- @energyweb/origin-organization-irec-api 1.8.1
- @energyweb/utils-general 11.2.1
- @nestjs/common 8.1.1
- @nestjs/config 1.0.2
- @nestjs/core 8.1.1
- @nestjs/cqrs 8.0.0
- @nestjs/passport 8.0.1
- @nestjs/platform-express 8.1.1
- @nestjs/swagger 5.1.4
- @nestjs/typeorm 8.0.2
- bn.js 5.2.0
- class-transformer 0.3.1
- class-validator 0.13.2
- immutable 4.0.0
- moment 2.29.2
- pg 8.7.1
- reflect-metadata 0.1.13
- rxjs 7.4.0
- typeorm 0.2.41
- @energyweb/exchange 1.13.1 development
- @energyweb/exchange-irec 1.2.1 development
- @nestjs/swagger 5.1.4 development
- @nestjs/testing 8.1.1 development
- @nestjs/typeorm 8.0.2 development
- @openapitools/openapi-generator-cli 2.4.26 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- json-to-pretty-yaml 1.2.2 development
- mocha 9.1.3 development
- prettier 2.5.1 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- axios 0.24.0
- @energyweb/issuer 6.0.1 development
- @openzeppelin/cli 2.8.2 development
- @openzeppelin/contracts 4.4.2 development
- @openzeppelin/contracts-upgradeable 4.4.2 development
- @openzeppelin/upgrades 2.8.0 development
- @typechain/ethers-v5 7.0.1 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- mocha 9.1.3 development
- solc 0.8.4 development
- truffle 5.4.26 development
- truffle-typings 1.0.8 development
- typechain 6.1.0 development
- typescript 4.5.4 development
- @ethersproject/abi 5.3.1
- @ethersproject/contracts 5.3.0
- @ethersproject/providers 5.3.1
- chai 4.3.4
- ethers 5.3.1
- @mui/material 5.2.6
- @mui/styles 5.2.3
- clsx 1.1.1
- @energyweb/origin-ui-assets 0.3.1
- @energyweb/origin-ui-theme 0.3.1
- @energyweb/origin-ui-utils 0.1.3
- @energyweb/utils-general 11.2.1
- @ethersproject/bignumber 5.3.0
- @ethersproject/units 5.3.0
- @hookform/resolvers 2.8.5
- @mui/icons-material 5.2.5
- @mui/lab 5.0.0-alpha.62
- @mui/material 5.2.6
- @react-google-maps/api 2.7.0
- axios 0.24.0
- dayjs 1.10.7
- lodash 4.17.21
- react-beautiful-dnd 13.1.0
- react-dropzone 11.4.2
- react-hook-form 7.20.5
- react-toastify 8.1.0
- yup 0.32.11
- i18next 21.6.4
- react-i18next 11.14.3
- @energyweb/origin-ui-localization 0.3.1
- i18next 21.6.4
- react-i18next 11.14.3
- @energyweb/origin-ui-localization 0.3.1
- @energyweb/origin-ui-shared-state 0.1.3
- @mui/material 5.2.6
- i18next 21.6.4
- react-i18next 11.14.3
- @energyweb/utils-general 11.2.1
- @ethersproject/bignumber 5.3.0
- @ethersproject/units 5.3.0
- dayjs 1.10.7
- lodash 4.17.21
- query-string 7.0.1
- react-router 6.0.2
- @ethersproject/bignumber 5.3.0
- @ethersproject/providers 5.3.1
- @babel/core 7.16.12 development
- @babel/preset-env 7.16.11 development
- @babel/preset-react 7.16.0 development
- @babel/preset-typescript 7.16.7 development
- @emotion/babel-plugin 11.7.2 development
- @emotion/babel-preset-css-prop 11.2.0 development
- @nrwl/cli 13.2.3 development
- @nrwl/cypress 13.2.3 development
- @nrwl/eslint-plugin-nx 13.4.1 development
- @nrwl/jest 13.4.1 development
- @nrwl/linter 13.2.3 development
- @nrwl/react 13.2.3 development
- @nrwl/storybook 13.4.4 development
- @nrwl/tao 13.2.3 development
- @nrwl/web 13.2.3 development
- @nrwl/workspace 13.2.3 development
- @storybook/addon-docs 6.4.9 development
- @storybook/addon-essentials 6.4.9 development
- @storybook/addon-storyshots 6.4.9 development
- @storybook/addon-storysource 6.4.9 development
- @storybook/addons 6.4.9 development
- @storybook/builder-webpack5 6.4.7 development
- @storybook/manager-webpack5 6.4.7 development
- @storybook/react 6.4.7 development
- @storybook/testing-react 1.2.2 development
- @storybook/theming 6.4.9 development
- @svgr/rollup 5.5.0 development
- @svgr/webpack 5.5.0 development
- @testing-library/jest-dom 5.16.1 development
- @testing-library/react 12.1.2 development
- @testing-library/react-hooks 7.0.2 development
- @types/jest 27.4.0 development
- @types/lodash 4.14.178 development
- @types/material-ui 0.21.12 development
- @types/node 14.18.10 development
- @types/react 17.0.37 development
- @types/react-beautiful-dnd 13.1.2 development
- @types/react-dom 17.0.11 development
- @types/react-is 17.0.3 development
- @types/react-router-dom 5.3.2 development
- @types/testing-library__jest-dom 5.14.2 development
- @types/webpack 5.28.0 development
- @typescript-eslint/eslint-plugin 5.8.1 development
- @typescript-eslint/parser 5.8.1 development
- babel-jest 27.4.5 development
- babel-loader 8.2.3 development
- cypress 9.2.0 development
- cypress-file-upload 5.0.8 development
- cypress-wait-until 1.7.2 development
- eslint 8.6.0 development
- eslint-config-airbnb 19.0.4 development
- eslint-config-prettier 8.3.0 development
- eslint-plugin-cypress 2.12.1 development
- eslint-plugin-import 2.25.3 development
- eslint-plugin-jsx-a11y 6.5.1 development
- eslint-plugin-prettier 4.0.0 development
- eslint-plugin-react 7.27.1 development
- eslint-plugin-react-hooks 4.3.0 development
- jest 27.4.5 development
- jest-fetch-mock 3.0.3 development
- jest-localstorage-mock 2.4.18 development
- prettier 2.5.1 development
- storybook-dark-mode 1.0.8 development
- test-react-hooks 3.0.4 development
- ts-jest 27.1.2 development
- ts-node 9.1.1 development
- tsconfig-paths-webpack-plugin 3.5.2 development
- typescript 4.5.4 development
- url-loader 4.1.1 development
- webpack 5.64.4 development
- webpack-bundle-analyzer 4.5.0 development
- @emotion/react 11.7.1
- @emotion/styled 11.6.0
- @energyweb/exchange-irec-react-query-client 1.1.1
- @energyweb/exchange-react-query-client 1.0.2
- @energyweb/issuer 6.0.1
- @energyweb/issuer-irec-api-react-query-client 1.0.2
- @energyweb/origin-backend-core 8.2.1
- @energyweb/origin-backend-react-query-client 1.0.2
- @energyweb/origin-device-registry-api-react-query-client 1.0.2
- @energyweb/origin-device-registry-irec-local-api-react-query-client 1.0.2
- @energyweb/origin-energy-api-react-query-client 1.0.2
- @energyweb/origin-organization-irec-api-react-query-client 1.0.2
- @energyweb/utils-general 11.2.1
- @ethersproject/address 5.3.0
- @ethersproject/bignumber 5.3.0
- @ethersproject/providers 5.3.1
- @ethersproject/units 5.3.0
- @hookform/resolvers 2.8.5
- @mui/icons-material 5.2.5
- @mui/lab 5.0.0-alpha.65
- @mui/material 5.3.0
- @mui/styles 5.3.0
- @react-google-maps/api 2.7.0
- axios 0.24.0
- buffer 6.0.3
- chart.js 3.7.0
- clsx 1.1.1
- core-js 3.20.2
- crypto-browserify 3.12.0
- dayjs 1.10.7
- emotion-theming 11.0.0
- history 5.2.0
- i18next 21.6.4
- lodash 4.17.21
- os-browserify 0.3.0
- query-string 7.0.1
- react 17.0.2
- react-beautiful-dnd 13.1.0
- react-chartjs-2 4.0.0
- react-dom 17.0.2
- react-dropzone 11.4.2
- react-error-boundary 3.1.4
- react-hook-form 7.20.5
- react-i18next 11.14.3
- react-is 17.0.2
- react-query 3.34.0
- react-router 6.0.2
- react-router-dom 6.0.2
- react-toastify 8.1.0
- react-use 17.3.1
- regenerator-runtime 0.13.9
- stream-browserify 3.0.0
- tslib 2.3.1
- yup 0.32.11
- @nestjs/common 8.1.1 development
- @nestjs/core 8.1.1 development
- @types/bn.js 5.1.0 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- @types/pg 8.6.4 development
- mocha 9.1.3 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- @energyweb/origin-backend-core 8.2.1
- @nestjs/config 1.0.2
- @nestjs/swagger 5.1.4
- bn.js 5.2.0
- class-validator 0.13.2
- pg 8.7.1
- polly-js 1.8.3
- rxjs 7.4.0
- typeorm 0.2.41
- @types/chai 4.3.0 development
- @types/eth-sig-util 2.1.1 development
- @types/mocha 9.0.0 development
- @types/node 14.18.10 development
- mocha 9.1.3 development
- ts-node 9.1.1 development
- typescript 4.5.4 development
- chai 4.3.4
- eth-sig-util 2.5.4
- ethers 5.3.1
- jsonschema 1.4.0
- moment 2.29.2
- winston 3.3.3
- mkdocs-autolinks-plugin ==0.4.0
- mkdocs-material *
- mkdocs-mermaid2-plugin ==0.5.2
Score: 21.162225242257854