-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
172 lines (172 loc) · 5.1 KB
/
package.json
File metadata and controls
172 lines (172 loc) · 5.1 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "@ground/root",
"version": "0.0.1",
"description": "Root package for Ground hosted components",
"nx": {
"name": "root",
"targets": {
"clean": {
"command": "nx run-many -t clean --exclude=root --parallel --output-style=stream-without-prefixes"
},
"lint": {
"executor": "nx:noop",
"dependsOn": [
{
"target": "lint",
"projects": "*"
}
]
},
"test": {
"executor": "nx:noop",
"dependsOn": [
{
"target": "test",
"projects": "*"
}
]
},
"format:projects": {
"executor": "nx:noop",
"dependsOn": [
{
"target": "format:check",
"projects": "*"
}
]
},
"build": {
"dependsOn": [
{
"target": "build",
"projects": "web",
"params": "forward"
},
{
"target": "build",
"projects": "functions"
}
]
},
"start": {
"executor": "nx:run-commands",
"options": {
"commands": [
"firebase experiments:enable webframeworks",
"firebase emulators:start --project demo-local --config firebase.local.json --import data/local"
]
},
"dependsOn": [
"build"
]
},
"start-android-test-data": {
"executor": "nx:run-commands",
"options": {
"commands": [
"firebase experiments:enable webframeworks",
"firebase emulators:start --project demo-local --config firebase.local.json --import data/test-android"
]
},
"dependsOn": [
"build"
]
},
"deploy": {
"executor": "nx:run-commands",
"configurations": {
"staging": {
"command": "firebase deploy --config firebase.json --project ground-dev-sig"
},
"production": {
"command": "firebase deploy --config firebase.json --project YOUR-PROD-PROJECT"
}
},
"dependsOn": [
"build"
]
},
"export:local": {
"command": "firebase emulators:export data/local --project demo-local --only firestore"
},
"start-and-export:test": {
"command": "firebase emulators:exec 'npm run watch:local' --project demo-local --ui --config firebase.local.json --import data/test --export-on-exit data/test"
},
"test:e2e:create": {
"command": "WAIT_ON_INTERVAL=30000 start-server-and-test 'nx run root:start-and-export:test' '5000|http://localhost:4000/firestore' 'nx run e2e-tests:test:create'"
},
"test:e2e:create:debug": {
"command": "WAIT_ON_INTERVAL=30000 start-server-and-test 'nx run root:start-and-export:test' '5000|http://localhost:4000/firestore' 'nx run e2e-tests:test:create:debug'"
},
"test:e2e:verify": {
"command": "WAIT_ON_INTERVAL=30000 start-server-and-test 'nx run root:start-and-export:test' '5000|http://localhost:4000/firestore' 'nx run e2e-tests:test:verify'"
},
"test:e2e:verify:debug": {
"command": "WAIT_ON_INTERVAL=30000 start-server-and-test 'nx run root:start-and-export:test' '5000|http://localhost:4000/firestore' 'nx run e2e-tests:test:verify:debug'"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/google/ground-platform.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/google/ground-platform/issues"
},
"homepage": "https://groundplatform.org",
"devDependencies": {
"@angular/cli": "catalog:dev",
"@angular-eslint/builder": "catalog:dev",
"@angular-eslint/eslint-plugin": "catalog:dev",
"@angular-eslint/eslint-plugin-template": "catalog:dev",
"@angular-eslint/template-parser": "catalog:dev",
"@eslint/eslintrc": "catalog:dev",
"@types/jasmine": "catalog:dev",
"@typescript-eslint/eslint-plugin": "catalog:dev",
"@typescript-eslint/parser": "catalog:dev",
"eslint": "catalog:dev",
"eslint-config-prettier": "catalog:dev",
"eslint-plugin-import": "catalog:dev",
"eslint-plugin-n": "catalog:dev",
"eslint-plugin-unused-imports": "catalog:dev",
"firebase-tools": "catalog:dev",
"gts": "catalog:dev",
"isolate-package": "catalog:dev",
"jasmine": "catalog:dev",
"jasmine-expect": "catalog:dev",
"jasmine-spec-reporter": "catalog:dev",
"nx": "catalog:dev",
"prettier": "catalog:dev",
"start-server-and-test": "catalog:dev",
"ts-mocha": "catalog:dev",
"ts-node": "catalog:dev",
"tslib": "catalog:dev",
"typescript": "catalog:dev"
},
"engines": {
"node": "22"
},
"pnpm": {
"onlyBuiltDependencies": [
"@bufbuild/buf",
"@firebase/util",
"@parcel/watcher",
"core-js",
"esbuild",
"farmhash",
"fsevents",
"less",
"lmdb",
"msgpackr-extract",
"nx",
"protobufjs",
"puppeteer",
"re2",
"unrs-resolver"
]
},
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "^19.3.2"
}
}