-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.82 KB
/
package.json
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
{
"name": "combined-astro-starter-kit",
"version": "1.0.0",
"description": "Combined ApostropheCMS plus Astro starter kit",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run install-frontend && npm run install-backend && echo '\\n💡 combined npm install complete'",
"install-frontend": "cd frontend && echo '\\n💡 running npm install in frontend/' && npm install",
"install-backend": "cd backend && echo '\\n💡 running npm install in backend/' && npm install",
"update": "npm run update-frontend && npm run update-backend && echo '\\n💡 combined npm update complete'",
"update-frontend": "cd frontend && echo '\\n💡 running npm update in frontend/' && npm update",
"update-backend": "cd backend && echo '\\n💡 running npm update in backend/' && npm update",
"build": "npm run build-frontend && npm run build-backend && echo '\\n💡 combined npm build complete'",
"build-frontend": "cd frontend && echo '\\n💡 running npm run build in frontend/' && npm run build",
"build-backend": " cd backend && echo '\\n💡 running npm run build in backend/' && npm run build",
"migrate": "cd backend && npm run migrate",
"serve-frontend": "cd frontend && npm run serve",
"serve-backend": "cd backend && npm run serve",
"load-starter-content": "cd backend && npm run load-starter-content"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apostrophecms/combined-astro-starter-kit.git"
},
"keywords": [
"astro",
"apostrophecms",
"apostrophe"
],
"author": "Apostrophe Technologies Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/apostrophecms/combined-astro-starter-kit/issues"
},
"homepage": "https://github.com/apostrophecms/combined-astro-starter-kit#readme"
}