-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "flipflow-pro",
"private": true,
"version": "1.0.0",
"description": "FlipFlow Pro — Multi-Platform Arbitrage & Resale Engine",
"license": "MIT",
"author": "FlipFlow Team",
"keywords": ["arbitrage", "resale", "ebay", "etsy", "flipflow", "price-comparison"],
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "concurrently \"vite\" \"node server/index.js\"",
"dev:frontend": "vite",
"dev:server": "node server/index.js",
"build": "vite build",
"preview": "vite preview",
"server": "node server/index.js",
"start": "node server/index.js",
"docker:build": "docker build -t flipflow-pro .",
"docker:up": "docker compose up -d"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.8.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^9.1.2",
"vite": "^6.3.2"
}
}