blob: dd6304886f4fd4b3f9c7ad06e5a8eb5377c23bd2 [file] [log] [blame]
gio5f2f1002025-03-20 18:38:48 +04001{
2 "name": "server",
3 "version": "1.0.0",
4 "description": "",
5 "main": "index.js",
gioc31bf142025-06-16 07:48:20 +00006 "type": "module",
gio5f2f1002025-03-20 18:38:48 +04007 "scripts": {
gio2f393c12025-07-01 08:02:48 +00008 "build": "node --max-old-space-size=1000 node_modules/.bin/tsc",
gioa71316d2025-05-24 09:41:36 +04009 "test": "jest",
gio97efd722025-05-19 10:36:12 +000010 "format": "prettier --write src/**/*.{js,ts,jsx,tsx} --list-different",
giod0026612025-05-08 13:00:36 +000011 "format-check": "prettier --check src/**/*.{js,ts,jsx,tsx}",
gio8d0f6352025-05-11 13:29:33 +000012 "lint": "eslint .",
gio2f393c12025-07-01 08:02:48 +000013 "start": "node dist/index.js",
14 "prisma-migrate": "prisma migrate dev"
gio5f2f1002025-03-20 18:38:48 +040015 },
16 "author": "",
17 "license": "ISC",
18 "dependencies": {
gioa71316d2025-05-24 09:41:36 +040019 "@loancrate/prisma-schema-parser": "^3.0.0",
gio218e8132025-04-22 17:11:58 +000020 "@prisma/client": "^6.6.0",
21 "axios": "^1.8.4",
gioc31bf142025-06-16 07:48:20 +000022 "config": "file:../config",
gioa71316d2025-05-24 09:41:36 +040023 "dotenv": "^16.5.0",
24 "dotenv-expand": "^12.0.2",
gio5f2f1002025-03-20 18:38:48 +040025 "express": "^4.21.1",
gioa71316d2025-05-24 09:41:36 +040026 "shelljs": "^0.10.0",
gio7f98e772025-05-07 11:00:14 +000027 "sqlite3": "^5.1.7",
gioa71316d2025-05-24 09:41:36 +040028 "tmp": "^0.2.3",
gio7f98e772025-05-07 11:00:14 +000029 "zod": "^3.24.4"
gio5f2f1002025-03-20 18:38:48 +040030 },
31 "devDependencies": {
gio8d0f6352025-05-11 13:29:33 +000032 "@eslint/js": "^9.13.0",
gioa71316d2025-05-24 09:41:36 +040033 "@jest/globals": "^30.0.0-beta.3",
34 "@types/dotenv": "^6.1.1",
gio5f2f1002025-03-20 18:38:48 +040035 "@types/express": "^5.0.0",
gioa71316d2025-05-24 09:41:36 +040036 "@types/jest": "^29.5.14",
gio5f2f1002025-03-20 18:38:48 +040037 "@types/node": "^22.9.1",
gioa71316d2025-05-24 09:41:36 +040038 "@types/shelljs": "^0.8.16",
gio5f2f1002025-03-20 18:38:48 +040039 "@types/sqlite3": "^3.1.11",
gioa71316d2025-05-24 09:41:36 +040040 "@types/tmp": "^0.2.6",
gio8d0f6352025-05-11 13:29:33 +000041 "eslint": "^9.13.0",
gioa71316d2025-05-24 09:41:36 +040042 "jest": "^29.7.0",
43 "memfs": "^4.17.2",
giod0026612025-05-08 13:00:36 +000044 "prettier": "3.5.3",
gio218e8132025-04-22 17:11:58 +000045 "prisma": "^6.6.0",
gioa71316d2025-05-24 09:41:36 +040046 "ts-jest": "^29.3.4",
gio09fcab52025-05-12 14:05:07 +000047 "typescript": "^5.8.3",
gio8d0f6352025-05-11 13:29:33 +000048 "typescript-eslint": "^8.11.0"
giod0026612025-05-08 13:00:36 +000049 },
50 "prettier": {
51 "printWidth": 120,
52 "tabWidth": 4,
53 "useTabs": true,
54 "singleQuote": false,
55 "trailingComma": "all",
56 "semi": true,
57 "bracketSpacing": true,
58 "arrowParens": "always"
gio5f2f1002025-03-20 18:38:48 +040059 }
gio09fcab52025-05-12 14:05:07 +000060}