-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 923 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 923 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
35
{
"name": "snip",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch server/index.ts",
"dev:client": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "NODE_ENV=production tsx server/index.ts",
"build-and-start": "npm run build && npm start"
},
"dependencies": {
"axios": "^1.6.5",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.22.1",
"mongodb": "^6.20.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^5.0.12"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2"
}
}