6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "landvex-api-fas2",
|
|
"version": "2.0.0",
|
|
"description": "LandveX Object API — Fas 2: Bounty-motor + fältverifieringsflöde + Vision identify",
|
|
"main": "src/server.js",
|
|
"scripts": {
|
|
"start": "node src/server.js",
|
|
"dev": "nodemon src/server.js",
|
|
"test": "jest --verbose",
|
|
"test:e2e": "jest --testPathPattern=e2e --verbose",
|
|
"db:init": "node scripts/init-db.js",
|
|
"db:seed": "node scripts/seed-data.js"
|
|
},
|
|
"keywords": [
|
|
"landvex",
|
|
"infrastructure",
|
|
"bounty",
|
|
"api",
|
|
"quixzoom"
|
|
],
|
|
"author": "LandveX",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"better-sqlite3": "^11.9.1",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"express-validator": "^7.0.1",
|
|
"helmet": "^7.1.0",
|
|
"morgan": "^1.10.0",
|
|
"sharp": "^0.33.2",
|
|
"sqlite3": "^6.0.1",
|
|
"uuid": "^9.0.1",
|
|
"winston": "^3.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.7.0",
|
|
"nodemon": "^3.0.1",
|
|
"supertest": "^6.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/tests/setup.js"
|
|
]
|
|
}
|
|
}
|