-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "wordle-solver",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css}\"",
"lint": "eslint src --ext .ts,.tsx",
"playwright:install": "playwright install --with-deps",
"server": "tsx server/index.ts",
"dev:full": "concurrently \"npm:dev\" \"npm:server\""
},
"dependencies": {
"firebase": "^12.6.0",
"lucide-react": "^0.553.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"cors": "^2.8.5",
"eslint": "^9.14.0",
"eslint-plugin-react": "^7.37.2",
"express": "^4.19.2",
"node-cron": "^3.0.3",
"playwright": "^1.48.2",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}