Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,12 @@ packages/components/storybook-static/

packages/hooks/dist/

packages/commands/build/release
packages/commands/build/release

**/.pnp.*
**/.yarn/*
**/!.yarn/patches
**/!.yarn/plugins
**/!.yarn/releases
**/!.yarn/sdks
**/!.yarn/versions
768 changes: 768 additions & 0 deletions .yarn/releases/yarn-3.1.0.cjs

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
nodeLinker: node-modules

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
spec: "@yarnpkg/plugin-version"

yarnPath: .yarn/releases/yarn-3.1.0.cjs
30,924 changes: 17,788 additions & 13,136 deletions examples/frontend/yarn.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
"scripts": {
"contracts:test": "yarn workspace @cura/contracts test"
},
"version": "0.0.0"
"version": "0.0.0",
"packageManager": "[email protected]"
}
1 change: 0 additions & 1 deletion packages/commands/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"version": "0.0.4",
"description": "Commands to interact with NEAR blockchain.",
"main": "cli.js",
"scripts": {},
"author": "Yassine",
"license": "MIT",
"devDependencies": {
Expand Down
3 changes: 1 addition & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"files": [
"dist"
],
"bin": {},
"scripts": {
"prepack": "yarn clean && tsc",
"build": "yarn run prepack",
Expand All @@ -18,13 +17,13 @@
"author": "Yassine",
"license": "MIT",
"dependencies": {
"@cura/hooks": "0.0.9",
"@theme-ui/match-media": "^0.12.0",
"@theme-ui/presets": "^0.6.0",
"near-api-js": "^0.42.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"theme-ui": "^0.10.0",
"@cura/hooks": "0.0.9",
"tslib": "^2.3.1"
},
"devDependencies": {
Expand Down
1 change: 0 additions & 1 deletion packages/hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"files": [
"dist"
],
"bin": {},
"scripts": {
"prepack": "yarn clean && tsc",
"build": "yarn run prepack",
Expand Down
Loading