-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.82 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
{
"name": "openmina-web",
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"ng": "ng",
"start:ocaml-fe": "ng serve --project ocaml-based-fe",
"start:rust-fe": "ng serve --project rust-based-fe",
"start:ci-fe": "ng serve --project ci-fe",
"start:fuzzing-fe": "ng serve --project fuzzing-fe",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"pack:shared": "cd projects/openmina-shared && ng-packagr -p ng-package.json && cd ../../dist/openmina-shared && npm pack",
"publish:shared": "cd dist/shared && npm publish --access public",
"update:styles": "npm run build:styles && npm run ocaml-copy:styles && npm run rust-copy:styles && npm run ci-copy:styles && npm run fuzz-copy:styles && npm run shared-copy:styles && npm run rust-frontend-copy:styles && rm \"projects/openmina-styles/src/lib/styles/openmina.scss\"",
"build:styles": "scss-bundle -c \"projects/openmina-styles/scss-bundle.config.json\"",
"ocaml-copy:styles": "cpx \"projects/openmina-styles/src/lib/styles/openmina.scss\" \"projects/ocaml-based-fe/src/assets/styles\"",
"rust-copy:styles": "cpx \"projects/openmina-styles/src/lib/styles/openmina.scss\" \"projects/rust-based-fe/src/assets/styles\"",
"ci-copy:styles": "cpx \"projects/openmina-styles/src/lib/styles/openmina.scss\" \"projects/ci-fe/src/assets/styles\"",
"fuzz-copy:styles": "cpx \"projects/openmina-styles/src/lib/styles/openmina.scss\" \"projects/fuzzing-fe/src/assets/styles\"",
"shared-copy:styles": "cpx \"projects/openmina-styles/src/lib/styles/openmina.scss\" \"projects/openmina-shared/src/assets/styles\"",
"rust-frontend-copy:styles": "cpx \"projects/openmina-styles/src/lib/styles/openmina.scss\" \"../openmina/frontend/src/assets/styles\"",
"tests": "npx cypress open --config baseUrl=http://localhost:4200",
"tests:headless": "npx cypress run --headless --config baseUrl=http://localhost:4200",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.11",
"@angular/cdk": "^16.2.10",
"@angular/common": "^16.2.11",
"@angular/compiler": "^16.2.11",
"@angular/core": "^16.2.11",
"@angular/fire": "^7.6.1",
"@angular/forms": "^16.2.11",
"@angular/material": "^16.2.10",
"@angular/platform-browser": "^16.2.11",
"@angular/platform-browser-dynamic": "^16.2.11",
"@angular/router": "^16.2.11",
"@ngneat/until-destroy": "^10.0.0",
"@ngrx/effects": "^16.2.0",
"@ngrx/router-store": "^16.2.0",
"@ngrx/store": "^16.2.0",
"@openmina/shared": "^0.71.0",
"@sentry/angular-ivy": "^7.61.1",
"@sentry/tracing": "^7.61.1",
"base-x": "^4.0.0",
"d3": "^7.8.4",
"firebase": "^9.12.1",
"mina-signer": "^1.1.0",
"ngx-json-viewer": "^3.2.1",
"rxjs": "~7.8.0",
"snarkyjs": "^0.10.1",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^16.0.1",
"@angular-builders/dev-server": "^7.3.1",
"@angular-devkit/build-angular": "^16.2.8",
"@angular/cli": "~16.2.8",
"@angular/compiler-cli": "^16.2.11",
"@cypress/schematic": "^2.5.1",
"@ngrx/store-devtools": "^16.2.0",
"@ngtools/webpack": "^16.2.8",
"@types/d3": "^7.4.0",
"@types/jasmine": "~4.3.0",
"@types/node": "^20.4.8",
"cpx": "^1.5.0",
"cypress": "^13.3.2",
"cypress-real-events": "^1.10.0",
"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",
"ng-packagr": "^16.2.3",
"scss-bundle": "^3.1.2",
"typescript": "~5.1.3",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"zkapp-cli": "^0.11.0"
}
}