-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 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
{
"name": "open-platter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate:sqlite",
"db:push": "drizzle-kit push:sqlite",
"db:migrate": "drizzle-kit migrate:sqlite",
"cron:run": "ts-node --project tsconfig.cron.json scripts/scheduler.ts"
},
"dependencies": {
"@giphy/js-fetch-api": "^5.0.0",
"@giphy/react-components": "^9.1.0",
"better-sqlite3": "^9.6.0",
"crypto-js": "^4.2.0",
"drizzle-orm": "^0.30.10",
"emoji-picker-react": "^4.9.4",
"lucide-react": "^0.381.0",
"next": "14.2.3",
"node-cron": "^3.0.3",
"oauth-1.0a": "^2.2.6",
"openai": "^4.47.1",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.20.17",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"ts-node": "^10.9.2"
}
}