blob: 66bf02ba9c2b07049e661c7f5dd64048badfc87d [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": {
gio9b7421a2025-06-18 12:31:13 +00008 "build": "node --max-old-space-size=4096 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 .",
gioaba9a962025-04-25 14:19:40 +000013 "start": "node dist/index.js"
gio5f2f1002025-03-20 18:38:48 +040014 },
15 "author": "",
16 "license": "ISC",
17 "dependencies": {
gioa71316d2025-05-24 09:41:36 +040018 "@loancrate/prisma-schema-parser": "^3.0.0",
gio218e8132025-04-22 17:11:58 +000019 "@prisma/client": "^6.6.0",
20 "axios": "^1.8.4",
gioc31bf142025-06-16 07:48:20 +000021 "config": "file:../config",
gioa71316d2025-05-24 09:41:36 +040022 "dotenv": "^16.5.0",
23 "dotenv-expand": "^12.0.2",
gio5f2f1002025-03-20 18:38:48 +040024 "express": "^4.21.1",
gioa71316d2025-05-24 09:41:36 +040025 "shelljs": "^0.10.0",
gio7f98e772025-05-07 11:00:14 +000026 "sqlite3": "^5.1.7",
gioa71316d2025-05-24 09:41:36 +040027 "tmp": "^0.2.3",
gio7f98e772025-05-07 11:00:14 +000028 "zod": "^3.24.4"
gio5f2f1002025-03-20 18:38:48 +040029 },
30 "devDependencies": {
gio8d0f6352025-05-11 13:29:33 +000031 "@eslint/js": "^9.13.0",
gioa71316d2025-05-24 09:41:36 +040032 "@jest/globals": "^30.0.0-beta.3",
33 "@types/dotenv": "^6.1.1",
gio5f2f1002025-03-20 18:38:48 +040034 "@types/express": "^5.0.0",
gioa71316d2025-05-24 09:41:36 +040035 "@types/jest": "^29.5.14",
gio5f2f1002025-03-20 18:38:48 +040036 "@types/node": "^22.9.1",
gioa71316d2025-05-24 09:41:36 +040037 "@types/shelljs": "^0.8.16",
gio5f2f1002025-03-20 18:38:48 +040038 "@types/sqlite3": "^3.1.11",
gioa71316d2025-05-24 09:41:36 +040039 "@types/tmp": "^0.2.6",
gio8d0f6352025-05-11 13:29:33 +000040 "eslint": "^9.13.0",
gioa71316d2025-05-24 09:41:36 +040041 "jest": "^29.7.0",
42 "memfs": "^4.17.2",
giod0026612025-05-08 13:00:36 +000043 "prettier": "3.5.3",
gio218e8132025-04-22 17:11:58 +000044 "prisma": "^6.6.0",
gioa71316d2025-05-24 09:41:36 +040045 "ts-jest": "^29.3.4",
gio09fcab52025-05-12 14:05:07 +000046 "typescript": "^5.8.3",
gio8d0f6352025-05-11 13:29:33 +000047 "typescript-eslint": "^8.11.0"
giod0026612025-05-08 13:00:36 +000048 },
49 "prettier": {
50 "printWidth": 120,
51 "tabWidth": 4,
52 "useTabs": true,
53 "singleQuote": false,
54 "trailingComma": "all",
55 "semi": true,
56 "bracketSpacing": true,
57 "arrowParens": "always"
gio5f2f1002025-03-20 18:38:48 +040058 }
gio09fcab52025-05-12 14:05:07 +000059}