forked from athivvat/ai-engineer-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1019 Bytes
/
package.json
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
{
"name": "ai-engineer-roadmap",
"version": "1.0.0",
"description": "A Roadmap to Becoming an AI Engineer",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/athivvat/ai-engineer-roadmap.git"
},
"author": "Athiwat Hirunworawongkun",
"license": "MIT",
"bugs": {
"url": "https://github.com/athivvat/ai-engineer-roadmap/issues"
},
"homepage": "https://github.com/athivvat/ai-engineer-roadmap#readme",
"dependencies": {
"@markdoc/markdoc": "^0.1.13",
"@markdoc/next.js": "^0.1.10",
"autoprefixer": "^10.4.12",
"clsx": "^1.2.1",
"next": "^12.3.1",
"postcss": "^8.4.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.1"
},
"devDependencies": {
"@types/node": "^18.11.4",
"@types/react": "^18.0.21",
"eslint": "^8.26.0",
"eslint-config-next": "^12.3.1",
"typescript": "^4.8.4"
}
}