-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "codequest",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "bun@1.1.17",
"description": "An interactive quiz game framework to build your own quests!",
"author": {
"name": "Gordon Mickel",
"email": "gordon@mickel.tech"
},
"license": "MIT",
"homepage": "https://gmickel.github.io/CodeQuest",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"question-prompt": "node question-prompt.cjs"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "1.1.1",
"@radix-ui/react-collapsible": "1.1.0",
"@radix-ui/react-progress": "1.1.0",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-tooltip": "1.1.2",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"gray-matter": "^4.0.3",
"lucide-react": "0.408.0",
"marked": "13.0.2",
"react": "18.3.1",
"react-confetti": "6.1.0",
"react-dom": "18.3.1",
"shiki": "1.10.3",
"tailwind-merge": "2.4.0",
"tailwindcss-animate": "1.0.7",
"yaml": "2.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "2.23.0",
"@inquirer/prompts": "5.2.0",
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.19",
"commander": "12.1.0",
"eslint": "9.7.0",
"postcss": "8.4.39",
"tailwindcss": "3.4.6",
"typescript": "5.5.3",
"vite": "5.3.4"
}
}