-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
{
"name": "nodejs-typescript",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts & npx tailwindcss -i ./public/styles.css -o ./public/dist/styles.css --watch",
"init-vectors": "bun src/init-vectors.ts",
"format": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,tsx}\" --plugin=prettier-plugin-organize-imports",
"build": "npx tailwindcss -i ./public/styles.css -o ./public/dist/styles.css"
},
"author": "",
"license": "ISC",
"dependencies": {
"@elysiajs/html": "^0.7.3",
"@elysiajs/static": "^0.7.1",
"@replit/ai-modelfarm": "^0.0.3",
"@supabase/supabase-js": "^2.38.1",
"elysia": "latest",
"express": "^4.18.2",
"glob": "^10.3.10",
"gpt3-tokenizer": "^1.1.5",
"isomorphic-dompurify": "^1.9.0",
"marked": "^9.1.4",
"node-fetch": "^3.3.1",
"sanitize-html": "^2.11.0",
"socket.io": "^4.7.2",
"tailwindcss": "^3.3.5"
},
"devDependencies": {
"@types/express": "^4.17.20",
"@types/node": "^20.8.7",
"@types/sanitize-html": "^2.9.3",
"bun-types": "latest",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"typescript": "^5.2.2"
}
}