-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.58 KB
/
package.json
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
{
"name": "embed-pg",
"version": "0.0.0",
"description": "EmbedPG: Enhance PostgreSQL with vector database capabilities for seamless embedding storage and similarity search. Ideal for ML, search, and analytics.",
"author": "development@embed-pg.dev",
"private": true,
"scripts": {
"start": "pm2 start ecosystem.config.js && pm2 logs",
"build": "sh ./scripts/production-build.sh",
"dev": "NODE_ENV=development pnpm dev:db migration --up && nodemon -L",
"dev:db": "ts-node -r tsconfig-paths/register --transpile-only -r dotenv/config src/database/migrate.ts",
"db": "node ./database/migrate.js",
"generate:collections": "plop collection && pnpm dev:db migration --create && pnpm lint:fix",
"generate:token": "ts-node -r tsconfig-paths/register --transpile-only -r dotenv/config src/commands/createApiKey.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix"
},
"dependencies": {
"@inquirer/prompts": "^5.0.2",
"@mikro-orm/core": "^6.1.11",
"@mikro-orm/migrations": "^6.1.11",
"@mikro-orm/postgresql": "^6.1.11",
"@mikro-orm/seeder": "^6.1.11",
"axios": "^1.7.4",
"compression": "^1.7.4",
"cookie-parser": "~1.4.6",
"cors": "^2.8.5",
"debug": "~4.3.4",
"express": "~4.19.2",
"helmet": "^7.1.0",
"pino": "^8.19.0",
"reflect-metadata": "^0.2.2",
"serve-favicon": "^2.5.0",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@swc/core": "^1.5.7",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.19.0",
"@types/module-alias": "^2.0.4",
"@types/node": "20.12.11",
"@types/serve-favicon": "^2.5.7",
"@types/uuid": "^9.0.8",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"nodemon": "^3.1.0",
"pino-pretty": "^11.0.0",
"plop": "^4.0.1",
"rimraf": "^5.0.5",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2 ",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}