-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.production.json
More file actions
38 lines (38 loc) · 953 Bytes
/
package.production.json
File metadata and controls
38 lines (38 loc) · 953 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
36
37
38
{
"name": "recipegenius-production",
"version": "1.0.0",
"description": "Production build of RecipeGenius",
"private": true,
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "npm run build:frontend",
"build:frontend": "cd frontend && npm run build:production",
"start": "cd backend && npm start",
"postinstall": "npm run install-all",
"install-all": "cd backend && npm ci && cd ../frontend && npm ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechyCSR/RecipeGenerator.git"
},
"keywords": [
"recipe",
"generator",
"grocery",
"planner",
"react",
"nodejs",
"mongodb",
"vercel",
"production"
],
"author": "TechyCSR <contact@techycsr.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TechyCSR/RecipeGenerator/issues"
},
"homepage": "https://github.com/TechyCSR/RecipeGenerator#readme"
}