forked from o1-labs/mina-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.8 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
{
"name": "frontend",
"version": "1.0.184",
"scripts": {
"install:deps": "npm install",
"start": "npm install && ng serve --configuration local --open",
"start:dev": "ng serve --configuration development",
"start:webnode": "npm install && ng serve --configuration webnodelocal --open",
"start:dev:mobile": "ng serve --configuration development --host 0.0.0.0",
"start:fuzzing": "npm run install:deps && ng build --configuration fuzzing && npm run start:bundle",
"build": "ng build",
"build:dev": "ng build --configuration development",
"build:prod": "ng build --configuration production && npm run sentry:sourcemaps",
"tests": "npx cypress open --config baseUrl=http://localhost:4200",
"tests:headless": "npx cypress run --headless --config baseUrl=http://localhost:4200",
"docker": "npm run build:prod && docker buildx build --platform linux/amd64 -t openmina/frontend:latest . && docker push openmina/frontend:latest",
"start:bundle": "serve dist/frontend/browser -s -l 4200",
"prebuild": "node scripts/update-frontend-version.js",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org openmina-uv --project openmina ./dist/frontend/browser && sentry-cli sourcemaps upload --org openmina-uv --project openmina ./dist/frontend/browser",
"copy-env": "cp dist/frontend/browser/assets/environments/webnode.js dist/frontend/browser/assets/environments/env.js",
"deploy": "npm run prebuild && npm run build:prod && npm run copy-env && firebase deploy",
"deploy:leaderboard": "npm run prebuild && npm run build:prod && cp dist/frontend/browser/assets/environments/leaderboard.js dist/frontend/browser/assets/environments/env.js && firebase deploy"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.14",
"@angular/cdk": "^19.2.19",
"@angular/common": "^19.2.14",
"@angular/compiler": "^19.2.14",
"@angular/core": "^19.2.14",
"@angular/fire": "^19.2.0",
"@angular/forms": "^19.2.14",
"@angular/material": "^19.2.19",
"@angular/platform-browser": "^19.2.14",
"@angular/platform-browser-dynamic": "^19.2.14",
"@angular/platform-server": "^19.2.14",
"@angular/router": "^19.2.14",
"@angular/ssr": "^19.2.15",
"@ledgerhq/hw-transport-webhid": "^6.29.4",
"@ngneat/until-destroy": "^10.0.0",
"@ngrx/effects": "^19.2.1",
"@ngrx/operators": "^19.2.1",
"@ngrx/router-store": "^19.2.1",
"@ngrx/store": "^19.2.1",
"@openmina/shared": "^0.126.0",
"@sentry/angular": "^8.35.0",
"@sentry/cli": "^2.38.2",
"@sentry/tracing": "^7.114.0",
"aos": "^2.3.4",
"base-x": "^5.0.0",
"bs58check": "^4.0.0",
"buffer": "^6.0.3",
"d3": "^7.8.4",
"eigen": "^0.2.2",
"express": "^4.18.2",
"firebase": "^11.0.1",
"jszip": "^3.10.1",
"mathjs": "^12.3.0",
"mina-signer": "^3.0.7",
"ngx-json-viewer": "^3.2.1",
"rxjs": "~7.8.1",
"tslib": "^2.8.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^19.0.1",
"@angular-builders/dev-server": "^7.3.1",
"@angular-devkit/build-angular": "^19.2.15",
"@angular/cli": "^19.2.15",
"@angular/compiler-cli": "^19.2.14",
"@ngrx/store-devtools": "^19.2.1",
"@types/d3": "^7.4.0",
"@types/express": "^4.17.17",
"@types/jasmine": "~4.3.0",
"@types/node": "^18.19.64",
"@types/w3c-web-hid": "^1.0.6",
"browser-sync": "^3.0.0",
"cypress": "^14.5.2",
"cypress-real-events": "^1.14.0",
"http-server": "^14.1.1",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "~5.8.3",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0"
}
}