-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
94 lines (94 loc) · 3.23 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
{
"name": "fire-editor",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "npm run sophia && ng serve",
"start-win": "npm run sophia-win && ng serve",
"build": "npm run sophia && ng build && node inject-metadata.js",
"build-win": "npm run sophia-win && ng build && node inject-metadata.js",
"buildprod-ae": "rm -r ./dist/ && npm run sophia && ng build --configuration=ae && node inject-metadata.js && cp ./custom-modules/CNAME ./dist/",
"test": "ng test",
"postinstall": "npm run init",
"lint": "prettier . --check && ng lint",
"format": "prettier . --write",
"e2e": "ng e2e",
"init": "./custom-modules/sophia-workaround.sh",
"init-win": "node patch.js && .\\custom-modules\\install-modified-logmonitor.sh && .\\custom-modules\\sophia-workaround.sh",
"sophia": "./custom-modules/sophia-workaround.sh",
"sophia-win": ".\\custom-modules\\sophia-workaround.sh",
"deploy": "npx angular-cli-ghpages"
},
"private": true,
"dependencies": {
"@aeternity/aepp-sdk": "^13.3.2",
"@angular-devkit/schematics": "^16.2.6",
"@angular/animations": "^16.2.9",
"@angular/cdk": "^15.0.0",
"@angular/common": "^16.2.9",
"@angular/compiler": "^16.2.9",
"@angular/compiler-cli": "^16.2.9",
"@angular/core": "^16.2.9",
"@angular/flex-layout": "15.0.0-beta.42",
"@angular/forms": "^16.2.9",
"@angular/platform-browser": "^16.2.9",
"@angular/platform-browser-dynamic": "^16.2.9",
"@angular/router": "^16.2.9",
"@fortawesome/angular-fontawesome": "^0.10.2",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@uiowa/digit-only": "^3.2.1",
"ansi_up": "^4.0.4",
"bowser": "^1.7.2",
"crypto-browserify": "^3.12.0",
"date-fns": "^2.30.0",
"element-closest": "^3.0.2",
"insert-line": "^1.1.0",
"is-ua-webview": "^1.1.2",
"monaco-editor": "^0.41.0",
"ng-circle-progress": "^1.5.1",
"ng-click-outside2": "^12.0.0",
"ng-inline-svg": "^10.0.0",
"ng-inline-svg-2": "^15.0.1",
"ngx-clipboard": "^16.0.0",
"ngx-monaco-editor-v2": "^16.0.1",
"ngx-ng2-semantic-ui": "^16.0.1",
"ngx-webstorage-service": "~5.0.0",
"os-browserify": "^0.3.0",
"phoenix-channels": "^1.0.0",
"popper.js": "^1.16.1",
"rxjs": "^6.5.5",
"stream": "0.0.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tslib": "^2.0.0",
"vm-browserify": "^1.1.2",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.6",
"@angular/cli": "^16.2.6",
"@angular/language-service": "^16.2.9",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^18.19.64",
"@types/ws": "^8.5.10",
"angular-cli-ghpages": "^0.6.2",
"codelyzer": "^6.0.0",
"insert-line": "^1.1.0",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"light-server": "^2.6.4",
"prettier": "^3.3.3",
"protractor": "~7.0.0",
"querystring-es3": "^0.2.1",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
"typescript": "^4.9.5",
"typescript-require": "^0.2.10"
}
}