-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "script-blender",
"version": "0.1.0",
"description": "A dynamic web-based coding platform for JavaScript, featuring real-time execution with Monaco Editor integration",
"author": "Sean Cheong Zhen Xiong (https://github.com/seancheong)",
"keywords": [
"react",
"tailwindcss",
"javascript",
"typescript",
"nextjs",
"monaco-editor"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"@babel/parser": "^7.23.6",
"@babel/traverse": "^7.23.6",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@tailwindcss/container-queries": "^0.1.1",
"axios": "^1.7.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"esbuild": "^0.25.0",
"lucide-react": "^0.302.0",
"monaco-jsx-highlighter": "^2.0.4",
"next": "16.1.0",
"next-themes": "^0.2.1",
"prettier": "^3.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-resizable-panels": "^1.0.5",
"redis": "^4.6.12",
"sonner": "^1.4.3",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/babel__traverse": "^7.20.4",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"autoprefixer": "^10.0.1",
"eslint": "^9",
"eslint-config-next": "16.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"monaco-editor": "^0.45.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}
}