-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b51162
commit e9d36ee
Showing
32 changed files
with
21,677 additions
and
33,632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
public-hoist-pattern[]=@tanstack/table-core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v20.14.0 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{ | ||
"name": "@landgriffon/api", | ||
"name": "api", | ||
"version": "0.2.0", | ||
"description": "API service for the LandGriffon platform", | ||
"author": "Vizzuality <[email protected]> (https://vizzuality.com/)", | ||
"private": true, | ||
"license": "MIT", | ||
"scripts": { | ||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | ||
"start": "yarn typeorm schema:sync && nest start", | ||
"start:watch": "yarn typeorm schema:sync && nest start --watch", | ||
"start": "pnpm typeorm schema:sync && nest start", | ||
"start:watch": "pnpm typeorm schema:sync && nest start --watch", | ||
"start:debug": "nest start --debug --watch", | ||
"start:prod": "yarn typeorm schema:sync && NODE_ENV=production, NODE_PATH=dist/src node dist/src/main", | ||
"start:prod": "pnpm typeorm schema:sync && NODE_ENV=production, NODE_PATH=dist/src node dist/src/main", | ||
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d src/data-source.ts", | ||
"build": "rm -rf dist && tsc", | ||
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | ||
"test:db-prepare": "yarn typeorm schema:drop && yarn typeorm schema:sync", | ||
"test:db-prepare": "pnpm typeorm schema:drop && pnpm typeorm schema:sync", | ||
"test": "node --expose-gc ./node_modules/.bin/jest --config test/jest-config.json -i --logHeapUsage --forceExit", | ||
"test:watch": "jest --config test/jest-config.json --watch", | ||
"test:cov": "node --expose-gc ./node_modules/.bin/jest --config test/jest-config.json --coverage --forceExit", | ||
|
@@ -23,9 +23,6 @@ | |
"test:unit": "node --expose-gc ./node_modules/.bin/jest --config test/jest-config.json --forceExit -i test/unit/", | ||
"test:e2e": "NODE_OPTIONS=\"--max-old-space-size=6144\" node --expose-gc ./node_modules/.bin/jest --config test/jest-config.json --logHeapUsage --forceExit -i test/e2e/" | ||
}, | ||
"engines": { | ||
"node": "^18.16" | ||
}, | ||
"dependencies": { | ||
"@google-cloud/bigquery": "^7.5.0", | ||
"@googlemaps/google-maps-services-js": "~3.3.2", | ||
|
Oops, something went wrong.