-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
49 lines (49 loc) · 2.31 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@ground/root",
"version": "0.0.1",
"description": "Root package for Ground hosted components",
"scripts": {
"clean-all": "npm run clean --workspaces --if-present",
"ci-all": "npm ci && npm ci --workspaces",
"build-all": "npm run build --workspaces --if-present",
"deploy": "firebase login && firebase deploy --project $npm_config_project",
"build-all-and-deploy": "npm run build-all && npm run deploy",
"watch:local": "npm run watch --workspace functions > functions.log 2>&1 & npm run watch --config=local --project=local --workspace web > web.log 2>&1",
"start:local": "firebase emulators:exec 'npm run watch:local' --project local --ui --config firebase.local.json --import data/local",
"export:local": "firebase emulators:export data/local --project local --only firestore",
"start-and-export:test": "firebase emulators:exec 'npm run watch:local' --project local --ui --config firebase.local.json --import data/test --export-on-exit data/test",
"test:e2e:create": "WAIT_ON_INTERVAL=30000 start-server-and-test start-and-export:test '5000|http://localhost:4000/firestore' 'npm run test:create --prefix=e2e-tests'",
"test:e2e:create:debug": "WAIT_ON_INTERVAL=30000 start-server-and-test start-and-export:test '5000|http://localhost:4000/firestore' 'npm run test:create:debug --prefix=e2e-tests'",
"test:e2e:verify": "WAIT_ON_INTERVAL=30000 start-server-and-test start-and-export:test '5000|http://localhost:4000/firestore' 'npm run test:verify --prefix=e2e-tests'",
"test:e2e:verify:debug": "WAIT_ON_INTERVAL=30000 start-server-and-test start-and-export:test '5000|http://localhost:4000/firestore' 'npm run test:verify:debug --prefix=e2e-tests'"
},
"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": "13.6.0",
"isolate-package": "^1.18.0",
"lerna": "^8.1.3",
"start-server-and-test": "^2.0.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.2"
},
"engines": {
"node": "20"
},
"workspaces": [
"proto",
"lib",
"functions",
"web"
],
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "^19.3.2"
}
}