-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 922 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 922 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
{
"name": "hackjunctionsite",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "npm run setup-backend && npm run setup-frontend",
"setup-backend": "cd backend && npm install",
"setup-frontend": "cd frontend && npm run setup",
"dev": "npm-run-all --parallel dev-frontend dev-backend",
"dev-backend": "cd backend && strapi develop",
"dev-frontend": "cd frontend/app && npm start",
"deploy": "npm run deploy-backend && npm run deploy-frontend",
"deploy-frontend": "git push dokku-frontend",
"deploy-backend": "git push dokku-backend"
},
"author": "Juuso Lappalainen",
"license": "ISC",
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {}
}