Skip to content

Commit 1d588d4

Browse files
committed
chore: add decimal.js dependency to package.json and package-lock.json
1 parent 55f8709 commit 1d588d4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

dev-demo/package-lock.json

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev-demo/package.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,17 @@
77
"scripts": {
88
"_env:dev": "dotenvx run -f .env.local -f .env --overload --",
99
"start": "npm run _env:dev -- tsx watch index.ts",
10-
1110
"makemigration:sqlite": "npm run _env:dev -- npx --yes prisma migrate dev --create-only --schema=./migrations/prisma/sqlite/schema.prisma",
1211
"migrate:sqlite": "npm run _env:dev -- npx --yes prisma migrate deploy --schema=./migrations/prisma/sqlite/schema.prisma",
13-
1412
"makemigration:mysql": "npm run _env:dev -- npx --yes prisma migrate dev --create-only --schema=./migrations/prisma/mysql/schema.mysql.prisma",
1513
"migrate:mysql": "npm run _env:dev -- npx --yes prisma migrate deploy --schema=./migrations/prisma/mysql/schema.mysql.prisma",
16-
1714
"makemigration:postgres": "npm run _env:dev -- npx --yes prisma migrate dev --create-only --schema=./migrations/prisma/postgres/schema.postgres.prisma",
1815
"migrate:postgres": "npm run _env:dev -- npx --yes prisma migrate deploy --schema=./migrations/prisma/postgres/schema.postgres.prisma",
19-
2016
"migrate:clickhouse": "npx clickhouse-migrations migrate --host=http://localhost:8124/demo --user=demo --password=demo --db=demo --migrations-home=./migrations/clickhouse_migrations",
21-
2217
"install-plugins": "cd ../plugins && bash install-plugins.sh",
2318
"install-adapters": "cd ../adapters && bash install-adapters.sh",
24-
2519
"build-adminforth": "cd ../adminforth && npm ci && npm run build && npm link",
26-
2720
"migrate:all": "npm run migrate:sqlite && npm run migrate:mysql && npm run migrate:postgres && npm run migrate:clickhouse",
28-
2921
"setup-dev-demo": "npm run build-adminforth && cp .env.local .env && npm run install-plugins && npm run install-adapters && npm install && npm link adminforth && bash ./run_inventory.sh"
3022
},
3123
"author": "",
@@ -34,6 +26,7 @@
3426
"@prisma/client": "^5.22.0",
3527
"better-sqlite3": "^10.1.0",
3628
"clickhouse-migrations": "^1.1.1",
29+
"decimal.js": "^10.6.0",
3730
"express": "^4.21.0",
3831
"pg": "^8.16.3",
3932
"random-words": "^2.0.1",

0 commit comments

Comments
 (0)