-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.87 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
75
76
77
{
"name": "discourse-demo",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/knex": "0.16.1",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"bun-types": "latest",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"typescript-eslint": "^8.11.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"run:dev": "bun scripts/setup-dev.ts",
"run:dev:reset": "bun scripts/setup-dev.ts --reset",
"start": "bun server.ts",
"run:prod": "dotenv -e .env.production -- bun server.ts",
"startServer": "NODE_ENV=production bun server.ts",
"test": "dotenv -e .env.test -- jest",
"clean": "rm db/discourse.db && bun knex migrate:latest",
"migrate:prod": "NODE_ENV=production bun knex migrate:latest",
"migrate": "bun knex migrate:latest",
"test:vector": "NODE_ENV=production bun reset:prod && NODE_ENV=production bun /Users/dennisonbertram/develop/discourse-demo/services/llm/embeddings/testInsert.ts",
"format": "prettier --write \"./services/**/*.{js,jsx,ts,tsx,cjs}\" \"./db/**/*.{js,jsx,ts,tsx,cjs}\" \"./config/**/*.{js,jsx,ts,tsx,cjs}\" \"./utils/**/*.{js,jsx,ts,tsx,cjs}\" \"*.{js,jsx,ts,tsx,json,md,cjs}\"",
"format:check": "prettier --check \"./services/**/*.{js,jsx,ts,tsx,cjs}\" \"./db/**/*.{js,jsx,ts,tsx,cjs}\" \"./config/**/*.{js,jsx,ts,tsx,cjs}\" \"./utils/**/*.{js,jsx,ts,tsx,cjs}\" \"*.{js,jsx,ts,tsx,json,md,cjs}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,cjs}\" --ignore-pattern \"db/migrations/*\" --fix",
"lint:check": "eslint \"**/*.{js,jsx,ts,tsx,cjs}\" --ignore-pattern \"db/migrations/*\""
},
"dependencies": {
"@radix-ui/react-tabs": "^1.1.1",
"@supabase/supabase-js": "^2.45.4",
"@types/html-to-text": "^9.0.4",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/pg": "^8.11.10",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"chalk": "5",
"cron": "^3.1.8",
"dompurify": "^3.1.7",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"feed": "^4.2.2",
"fs": "^0.0.1-security",
"gpt-3-encoder": "^1.1.4",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"hono": "^4.6.6",
"html-to-text": "^9.0.5",
"html-truncate": "^1.2.2",
"ioredis": "^5.4.1",
"jest": "^29.7.0",
"jsdom": "^25.0.1",
"knex": "^3.1.0",
"limiter": "^2.1.0",
"lodash": "^4.17.21",
"node-fetch": "2.6.7",
"openai": "^4.67.2",
"pg": "^8.13.0",
"pgvector": "^0.2.0",
"prettier": "^3.3.3",
"sqlite3": "^5.1.7",
"ts-jest": "^29.2.5",
"winston": "^3.15.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.23.8"
}
}