forked from google/ground-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.63 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
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
{
"name": "@ground/web",
"version": "0.0.1",
"scripts": {
"clean": "rm -rf dist coverage *.log",
"ci-all": "npm run ci-local-deps && npm ci",
"ci-local-deps": "npm ci --workspace=../proto --workspace=../lib",
"build-local-deps": "npm run build --workspace=../proto --workspace=../lib",
"build": "npm run --prefix scripts copy-keys && ng build -c $npm_config_config",
"build-all": "npm run build-local-deps && npm run build",
"build-and-test": "npm run build && npm run test",
"build-all-and-test": "npm run build-all && npm run test",
"watch": "npm run build -- --watch",
"start": "npm run build && ng serve -c $npm_config_config",
"build-and-start": "npm run build && npm run start",
"build-all-and-start": "npm run build-all && npm run start",
"pretest": "./pretest.sh",
"test": "ng test",
"test-headless": "npm run test -- --browsers ChromeHeadlessNoSandbox --watch=false",
"test-with-coverage": "npm run test -- --browsers ChromeHeadlessNoSandbox --watch=false --code-coverage",
"lint": "ng lint",
"lint:fix": "npm run lint -- --fix",
"posttest": "./posttest.sh",
"login": "npx firebase login",
"deploy": "npm run login && npx firebase deploy --only hosting --project $npm_config_project"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.8",
"@angular/cdk": "^17.3.8",
"@angular/common": "^17.3.8",
"@angular/compiler": "^17.3.8",
"@angular/core": "^17.3.8",
"@angular/fire": "^17.0.1",
"@angular/forms": "^17.3.8",
"@angular/google-maps": "^17.3.8",
"@angular/material": "^17.3.8",
"@angular/material-experimental": "^17.3.8",
"@angular/platform-browser": "^17.3.8",
"@angular/platform-browser-dynamic": "^17.3.8",
"@angular/router": "^17.3.8",
"@babel/runtime": "^7.24.7",
"@ground/lib": "file:../lib",
"@ground/proto": "file:../proto",
"@grpc/grpc-js": "^1.10.9",
"@iplab/ngx-file-upload": "^17",
"firebase": "^10.7.2",
"firebaseui": "^6.1.0",
"firebaseui-angular": "^6.2.0",
"functions": "^1.0.9",
"hammerjs": "^2.0.8",
"immutable": "^4.3.6",
"long": "^5.2.3",
"ngx-autosize-input": "^17",
"ngx-color": "^9.0.0",
"rxjs": "^7.5.7",
"tslib": "^2.4.1",
"zone.js": "^0.14.5"
},
"devDependencies": {
"@angular-devkit/architect": "0.1703.7",
"@angular-devkit/build-angular": "^17.3.7",
"@angular-eslint/builder": "^15",
"@angular-eslint/eslint-plugin-template": "^15.1.0",
"@angular/cli": "^17.3.7",
"@angular/compiler-cli": "^17.3.8",
"@angular/language-service": "^17.3.8",
"@jridgewell/source-map": "^0.3.2",
"@types/google.maps": "^3.54.10",
"@types/jasmine": "~3.6.0",
"@types/jasmine-expect": "3.8.1",
"@types/jasminewd2": "^2.0.8",
"@types/webpack-env": "^1.15.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^4.2.1",
"firebase-tools": "^13.8.2",
"gts": "^4.0.0",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.3.0",
"istanbul": "^0.4.5",
"jasmine-core": "^4.5.0",
"jasmine-matchers": "0.2.3",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-jasmine-matchers": "5.0.0",
"prettier": "^2.8.1",
"prettier-eslint": "^15.0.1",
"puppeteer": "^22.10.0",
"ts-node": "^8.10.2",
"typescript": "^5.4.5"
}
}