-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 835 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 835 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
{
"name": "2019-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "npm install && npm run setup-cms && npm run setup-frontend",
"setup-cms": "cd cms && npm install",
"setup-frontend": "cd frontend && npm run setup",
"dev": "npm-run-all --parallel dev-frontend dev-cms",
"dev-cms": "cd cms && strapi develop",
"dev-frontend": "cd frontend && npm run dev",
"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": "^12.0.0"
},
"dependencies": {}
}