forked from LabubuProject/LabuWho
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 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
{
"name": "labubu",
"private": "true",
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "npm run server",
"server": "node --watch server/server.js",
"client": "vite --host",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "jest"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.11",
"axios": "^1.11.0",
"bcryptjs": "^3.0.2",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.18.0",
"mongoose": "^8.17.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7.7.1",
"react-router-dom": "^7.7.1",
"tailwindcss": "^4.1.11"
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@eslint/js": "^9.30.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"babel-jest": "^30.0.5",
"concurrently": "^9.2.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"mongodb-memory-server": "^10.2.0",
"util": "^0.12.5",
"vite": "^7.0.4"
}
}