Skip to content

Commit

Permalink
Add package.json with dependencies and scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonfire1119 committed Apr 27, 2024
1 parent e0461a6 commit 110a4df
Show file tree
Hide file tree
Showing 3 changed files with 4,044 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/renovate-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,37 @@ jobs:
- name: Checkout
uses: actions/[email protected]

- name: Checkout
uses: actions/[email protected]

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- uses: pnpm/[email protected]
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false

- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install

- name: Check bumped version
id: check-bumped-version
uses: actions/github-script@v7
Expand Down
37 changes: 37 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "big-bear-casaos",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {},
"repository": {
"type": "git",
"url": "git+https://github.com/bigbeartechworld/big-bear-casaos.git"
},
"author": "",
"license": "GNU General Public License v3.0",
"bugs": {
"url": "https://github.com/bigbeartechworld/big-bear-casaos/issues"
},
"homepage": "https://github.com/bigbeartechworld/big-bear-casaos#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@types/jest": "^28.1.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.7",
"@types/semver": "^7.5.8",
"commitizen": "^4.3.0",
"eslint": "^8.57.0",
"eslint-plugin-json-schema-validator": "^5.1.0",
"eslint-plugin-jsonc": "^2.15.1",
"husky": "^9.0.11",
"jest": "^28.1.3",
"js-yaml": "^4.1.0",
"prettier": "^3.2.5",
"semver": "^7.6.0",
"ts-jest": "^28.0.7",
"typescript": "^5.4.5"
}
}
Loading

0 comments on commit 110a4df

Please sign in to comment.