-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.35 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
{
"name": "dapp-frontend",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:prod": "ng serve --configuration=production",
"start:dev": "ng serve --configuration=development",
"start:local": "ng serve --configuration=local",
"start:local-dev": "ng serve --configuration=local-dev",
"build": "ng build",
"build:prod": "ng build --configuration=production",
"build:dev": "ng build --configuration=development",
"build:local": "ng build --configuration=local",
"test": "ng test",
"test-ci": "ng test --code-coverage --watch=false",
"lint": "ng lint",
"lint-ci": "ng lint --format json > ./lintReport.json || true",
"lint-fix": "ng lint --fix",
"e2e": "ng e2e",
"fix-crypto": "node config/patch_crypto.js && npm run prepare-prod-build",
"prepare-prod-build": "npm run disable-pure-getters && npm run configure-mangle",
"disable-pure-getters": "replace 'pure_getters: buildOptions.buildOptimizer' 'pure_getters: false' ./node_modules/@angular-devkit/build-angular/src/webpack/configs/common.js ",
"configure-mangle": "replace 'safari10: true' 'safari10: true, keep_fnames: true' ./node_modules/@angular-devkit/build-angular/src/webpack/configs/common.js ",
"sonar-scanner": "sonar-scanner",
"render": "ts-node prerender.ts",
"prettier": "prettier --write 'src/**/*' 'e2e/**/*' 'config/**/*' 'README.md'"
},
"private": true,
"dependencies": {
"@airgap/beacon-sdk": "2.3.11",
"@angular/animations": "~11.2.0",
"@angular/common": "~11.2.0",
"@angular/compiler": "~11.2.0",
"@angular/core": "~11.2.0",
"@angular/forms": "~11.2.0",
"@angular/platform-browser": "~11.2.0",
"@angular/platform-browser-dynamic": "~11.2.0",
"@angular/router": "~11.2.0",
"@ngrx/effects": "^10.0.1",
"@ngrx/store": "^10.0.1",
"@ngx-pwa/local-storage": "^11.1.0",
"@taquito/beacon-wallet": "11.2.0",
"@taquito/local-forging": "11.2.0",
"@taquito/rpc": "11.2.0",
"@taquito/signer": "11.2.0",
"@taquito/taquito": "11.2.0",
"bootstrap": "^4.5.3",
"browserify-zlib": "^0.2.0",
"cipher-base": "^1.0.4",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"libsodium": "0.7.8",
"ngx-bootstrap": "^6.1.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"rxjs": "~6.6.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.3",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.0",
"@angular/cli": "~11.2.0",
"@angular/compiler-cli": "~11.2.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"husky": "^4.3.6",
"jasmine-core": "~3.9.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"protractor": "~7.0.0",
"replace": "^1.2.0",
"sonarqube-scanner": "^2.7.0",
"ts-node": "~8.3.0",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"typescript": "^4.1.5"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}