-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 813 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 813 Bytes
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
{
"type": "module",
"name": "todo-mern-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "node server.js",
"client": "vite",
"dev": "npx concurrently \"npm run server\" \"npm run client\"",
"build": "vite build",
"preview": "vite preview",
"start": "node server.js",
"vercel-build": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"mongoose": "^7.8.7"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"axios": "^1.7.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^5.4.10"
}
}