-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 961 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 961 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
{
"name": "unitygridplaza",
"type": "module",
"scripts": {
"dev": "concurrently \"npx vite --config client/vite.config.js\" \"nodemon server/server.js\"",
"start": "node server/server.js",
"build": "npx vite build --config client/vite.config.js",
"server": "nodemon server/server.js",
"db:reset": "node server/config/reset.js",
"scrape": "node server/scripts/scraper.js",
"scrape:resync": "node server/scripts/resyncDownloadedEvents.js"
},
"dependencies": {
"@picocss/pico": "^1.5.7",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"nodemon": "^2.0.22",
"pg": "^8.10.0",
"puppeteer": "^24.39.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"vite": "^4.2.0"
}
}