forked from google/ground-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.39 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.39 KB
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
{
"name": "ground",
"version": "0.0.1",
"description": "Ground hosted components",
"scripts": {
"clean": "npm run clean --prefix functions && npm run clean --prefix web",
"postinstall": "npm install --prefix functions && npm install --prefix web",
"build:local": "npm run build --prefix functions && npm run build:local --prefix web",
"build:dev": "npm run build --prefix functions && npm run build:dev --prefix web",
"build:prod": "npm run build --prefix functions && npm run build:prod --prefix web",
"watch:local": "npm run watch --prefix functions & npm run watch:local --prefix web",
"start:local": "firebase emulators:exec 'npm run watch:local' --project demo-project --ui --config firebase.local.json --import data/local",
"export:local": "firebase emulators:export data/local --project demo-project --only firestore",
"login": "firebase login",
"deploy:dev": "npm install && npm run build:dev && npm run login && firebase deploy --project",
"deploy:prod": "npm install && npm run build:prod && npm run login && firebase deploy --project"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gino-m/ground-platform.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gino-m/ground-platform/issues"
},
"homepage": "https://groundplatform.org",
"devDependencies": {
"firebase-tools": "11.16.1"
}
}