-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"packageManager": "pnpm@11.0.0",
"scripts": {
"dev": "nodemon --watch src --ext ts --exec ts-node ./server.ts",
"migrate": "npx drizzle-kit generate && npx drizzle-kit migrate",
"start": "nodemon --watch src --ext && ts-node server.ts --verbose",
"build": "ts-node server.ts --verbose",
"build-test": "tsc --noemit",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@electric-sql/pglite": "^0.2.17",
"@types/multer": "^1.4.12",
"axios": "^1.8.4",
"bcryptjs": "^3.0.2",
"big-integer": "^1.6.52",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"esbuild": "^0.25.2",
"esbuild-register": "^3.6.0",
"express": "^5.1.0",
"file-type": "^21.0.0",
"googleapis": "^173.0.0",
"handlebars": "^4.7.8",
"jsdom": "^26.1.0",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"multer": "^2.1.1",
"nodemailer": "^9.0.1",
"p-limit": "^7.3.0",
"papaparse": "^5.5.2",
"pg": "^8.14.1",
"pg-promise": "^12.6.2",
"postgres": "^3.4.5",
"randombytes": "^2.1.0",
"randomstring": "^1.3.1",
"sanitize-html": "^2.17.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/node": "^22.14.1",
"@types/papaparse": "^5.3.15",
"@types/pg": "^8.11.12",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^15.15.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.59.0"
},
"overrides": {
"drizzle-kit": {
"esbuild": "^0.25.0"
}
}
}