blob: 803c941ed0e4beda08569ecd5c77aca7dcd90785 [file] [log] [blame]
gio5f2f1002025-03-20 18:38:48 +04001{
2 "name": "server",
3 "version": "1.0.0",
4 "description": "",
5 "main": "index.js",
6 "scripts": {
7 "build": "tsc",
giod0026612025-05-08 13:00:36 +00008 "format": "prettier --write src/**/*.{js,ts,jsx,tsx}",
9 "format-check": "prettier --check src/**/*.{js,ts,jsx,tsx}",
gioaba9a962025-04-25 14:19:40 +000010 "start": "node dist/index.js"
gio5f2f1002025-03-20 18:38:48 +040011 },
12 "author": "",
13 "license": "ISC",
14 "dependencies": {
gio218e8132025-04-22 17:11:58 +000015 "@prisma/client": "^6.6.0",
16 "axios": "^1.8.4",
gio5f2f1002025-03-20 18:38:48 +040017 "express": "^4.21.1",
gio7f98e772025-05-07 11:00:14 +000018 "sqlite3": "^5.1.7",
19 "zod": "^3.24.4"
gio5f2f1002025-03-20 18:38:48 +040020 },
21 "devDependencies": {
22 "@types/express": "^5.0.0",
23 "@types/node": "^22.9.1",
24 "@types/sqlite3": "^3.1.11",
giod0026612025-05-08 13:00:36 +000025 "prettier": "3.5.3",
gio218e8132025-04-22 17:11:58 +000026 "prisma": "^6.6.0",
gio5f2f1002025-03-20 18:38:48 +040027 "typescript": "^5.6.3"
giod0026612025-05-08 13:00:36 +000028 },
29 "prettier": {
30 "printWidth": 120,
31 "tabWidth": 4,
32 "useTabs": true,
33 "singleQuote": false,
34 "trailingComma": "all",
35 "semi": true,
36 "bracketSpacing": true,
37 "arrowParens": "always"
gio5f2f1002025-03-20 18:38:48 +040038 }
giod0026612025-05-08 13:00:36 +000039}