generated from btholt/next-course-starter
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 762 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 762 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
{
"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",
"start": "next start",
"csv": "node csv/index.js",
"seo": "node summary/index.js"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"marked": "^15.0.6",
"marked-highlight": "^2.2.1",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"title-case": "^4.3.2"
},
"devDependencies": {
"convert-array-to-csv": "^2.0.0",
"dotenv": "^16.4.7",
"openai": "^4.80.1",
"zod": "^3.24.1"
}
}