-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 834 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 834 Bytes
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
{
"private": true,
"type": "module",
"license": "(CC-BY-NC-4.0 OR Apache-2.0)",
"author": "Brian Holt <btholt+next-course-starter@gmail.com>",
"scripts": {
"dev": "next dev",
"build": "next build && npm run csv && npm run llm-text",
"start": "next start",
"csv": "node csv/index.js",
"seo": "node summary/index.js",
"llm-text": "node summary/generateFullText.js"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.0.1",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"marked": "^16.2.1",
"marked-highlight": "^2.2.2",
"next": "^15.5.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"title-case": "^4.3.2"
},
"devDependencies": {
"convert-array-to-csv": "^2.0.0",
"dotenv": "^17.2.2",
"openai": "^5.19.1",
"zod": "^3.23.8"
}
}