-
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) · 908 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 908 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": "promptify-fullstack",
"version": "1.0.0",
"description": "Full-stack AI prompt creation platform",
"type": "module",
"scripts": {
"test-deployment": "node test-deployment.js",
"install-backend": "cd backend && npm install",
"install-frontend": "cd frontend && npm install",
"install-all": "npm run install-backend && npm run install-frontend",
"dev-backend": "cd backend && npm run dev",
"dev-frontend": "cd frontend && npm run dev",
"build-backend": "cd backend && npm run build",
"build-frontend": "cd frontend && npm run build",
"start-backend": "cd backend && npm start",
"preview-frontend": "cd frontend && npm run preview"
},
"keywords": [
"ai",
"prompts",
"fullstack",
"react",
"express",
"mongodb",
"render"
],
"author": "Promptify Team",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
}
}