-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 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
{
"name": "banglascript",
"homepage": "https://robinNcode.github.io/banglascript",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"generate-parser": "jison src/lib/banglascript.jison --module-type=esm -o src/lib/banglascript_parser.mjs",
"server": "tsc -p backend/tsconfig.json && node --env-file=backend/.env backend/dist/server.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.4",
"@tailwindcss/vite": "^4.1.14",
"@uiw/codemirror-theme-okaidia": "^4.25.2",
"@uiw/react-codemirror": "^4.24.2",
"axios": "^1.11.0",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"gh-pages": "^6.3.0",
"jison": "^0.4.18",
"lucide-react": "^0.537.0",
"mongoose": "^8.17.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-resizable-panels": "^3.0.6",
"react-router-dom": "^7.8.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.14",
"typewriter-effect": "^2.22.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@tailwindcss/postcss": "^4.1.16",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.21",
"dotenv": "^17.2.1",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"express": "^5.1.0",
"globals": "^16.3.0",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.0",
"vite": "^7.1.0"
}
}