-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 739 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 739 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
{
"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.5.1",
"gray-matter": "^4.0.3",
"highlight.js": "^11.9.0",
"marked": "^11.1.1",
"marked-highlight": "^2.1.1",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"title-case": "^4.2.0"
},
"devDependencies": {
"chatgpt": "^5.2.5",
"convert-array-to-csv": "^2.0.0",
"dotenv": "^16.3.1"
}
}