-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 KB
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
{
"name": "sql-labs",
"version": "2.0.0",
"description": "A modern, LeetCode-style SQL learning playground with 30+ interactive lessons",
"author": "Raghav Singla <https://github.com/RaghavOG>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RaghavOG/sql-labs"
},
"keywords": [
"sql",
"learning",
"education",
"database",
"tutorial",
"playground"
],
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"better-sqlite3": "^12.6.2",
"next": "16.1.4",
"react": "19.2.3",
"react-confetti": "^6.4.0",
"react-dom": "19.2.3",
"react-use": "^17.6.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"tailwindcss": "^4",
"typescript": "^5"
}
}