-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.21 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
{
"name": "library-checker",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"tsx watch src/server.ts\" \"vite\"",
"dev:plank": "concurrently \"tsx watch src/server.ts\" \"vite --config vite.plank.config.ts\"",
"dev:calendar": "concurrently \"tsx watch src/server.ts\" \"vite --config vite.calendar.config.ts\"",
"build": "vite build && vite build --config vite.plank.config.ts && vite build --config vite.calendar.config.ts && tsc",
"start": "NODE_ENV=production node dist/server.js",
"import": "tsx src/import-csv.ts",
"refresh:ratings": "tsx src/refresh-ratings.ts",
"refresh:genres": "tsx src/refresh-genres.ts",
"refresh:culture": "tsx src/refresh-culture.ts",
"refresh:publish-years": "tsx src/refresh-publish-years.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"better-sqlite3": "^12.5.0",
"csv-parse": "^5.5.2",
"dotenv": "^17.2.3",
"express": "^4.18.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"concurrently": "^9.2.1",
"tsx": "^4.6.2",
"typescript": "^5.3.2",
"vite": "^7.2.7",
"vite-plugin-pwa": "^1.2.0"
}
}