-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 4.44 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
{
"name": "mina-frontend",
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:cyp": "ng serve --configuration cyp",
"start:phone": "ng serve --host 192.168.1.184",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"build:prod": "ng build --configuration production",
"build:debug": "ng build --configuration debug",
"build:debug-v2": "ng build --configuration debug-v2",
"build:tracing": "ng build --configuration tracing",
"build:tracing-v2": "ng build --configuration tracing-v2",
"build:webnode": "ng build --configuration webnode",
"build:cyp": "ng build --configuration cyp",
"test": "ng test",
"deploy:network": "npm run build:debug && rmdir /S /q D:\\mina\\firebase-deployments\\openmina-network\\dist && Xcopy /E/I D:\\mina\\mina-frontend\\dist D:\\mina\\firebase-deployments\\openmina-network\\dist && cd D:\\mina\\firebase-deployments\\openmina-network && firebase deploy",
"deploy:network-v2": "npm run build:debug-v2 && rmdir /S /q D:\\mina\\firebase-deployments\\openmina-network-v2\\dist && Xcopy /E/I D:\\mina\\mina-frontend\\dist D:\\mina\\firebase-deployments\\openmina-network-v2\\dist && cd D:\\mina\\firebase-deployments\\openmina-network-v2 && firebase deploy",
"deploy:tracing": "npm run build:tracing && rmdir /S /q D:\\mina\\firebase-deployments\\openmina-tracing\\dist && Xcopy /E/I D:\\mina\\mina-frontend\\dist D:\\mina\\firebase-deployments\\openmina-tracing\\dist && cd D:\\mina\\firebase-deployments\\openmina-tracing && firebase deploy",
"deploy:tracing-v2": "npm run build:tracing-v2 && rmdir /S /q D:\\mina\\firebase-deployments\\openmina-tracing-v2\\dist && Xcopy /E/I D:\\mina\\mina-frontend\\dist D:\\mina\\firebase-deployments\\openmina-tracing-v2\\dist && cd D:\\mina\\firebase-deployments\\openmina-tracing-v2 && firebase deploy",
"deploy:webnode": "npm run build:webnode && rmdir /S /q D:\\mina\\firebase-deployments\\openmina-webnode\\dist && Xcopy /E/I D:\\mina\\mina-frontend\\dist D:\\mina\\firebase-deployments\\openmina-webnode\\dist && cd D:\\mina\\firebase-deployments\\openmina-webnode && firebase deploy",
"tests": "npx cypress open --config baseUrl=http://localhost:4200",
"tests:headless": "npx cypress run --headless --config baseUrl=http://localhost:4200",
"build:stats": "ng build --stats-json",
"analyze": "webpack-bundle-analyzer dist/mina-frontend/stats.json",
"docker-build": "docker build -t directcuteo/mina-frontend:34a8f53 . && docker push directcuteo/mina-frontend:34a8f53"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.8",
"@angular/cdk": "^15.2.8",
"@angular/common": "^15.2.8",
"@angular/compiler": "^15.2.8",
"@angular/core": "^15.2.8",
"@angular/fire": "^7.5.0",
"@angular/forms": "^15.2.8",
"@angular/material": "^15.2.8",
"@angular/platform-browser": "^15.2.8",
"@angular/platform-browser-dynamic": "^15.2.8",
"@angular/router": "^15.2.8",
"@ngneat/until-destroy": "^9.2.3",
"@ngrx/effects": "^15.4.0",
"@ngrx/router-store": "^15.4.0",
"@ngrx/store": "^15.4.0",
"@ngrx/store-devtools": "^15.4.0",
"@sentry/angular": "^7.33.0",
"@sentry/tracing": "^7.33.0",
"base-x": "^4.0.0",
"d3": "^7.8.4",
"firebase": "^9.12.1",
"mina-signer": "^1.1.0",
"ngx-json-viewer": "^3.1.0",
"rxjs": "~7.5.0",
"snarkyjs": "^0.10.1",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^15.0.0",
"@angular-builders/dev-server": "^7.3.1",
"@angular-devkit/build-angular": "^15.0.0",
"@angular/cli": "~15.2.6",
"@angular/compiler-cli": "^15.2.8",
"@types/d3": "^7.4.0",
"@types/d3-graphviz": "^2.6.7",
"@types/google.visualization": "^0.0.68",
"@types/jasmine": "~4.0.0",
"@types/node": "^18.16.0",
"@types/webassembly-js-api": "^0.0.1",
"apollo": "^2.34.0",
"cypress": "^12.6.0",
"cypress-real-events": "^1.7.6",
"jasmine-core": "~4.1.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"zkapp-cli": "^0.8.0"
},
"browser": {
"fs": false,
"os": false,
"path": false,
"crypto": false,
"constants": false,
"child_process": false
}
}