-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
75 lines (75 loc) · 2.55 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
{
"name": "skycoin-explorer",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.config.json",
"start:against-prod": "ng serve --proxy-config proxy-prod.config.json",
"build": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"e2e": "wdio run ./wdio.conf.ts --autoCompileOpts.tsNodeOpts.project=./test/tsconfig.json",
"e2e-blockchain-180": "wdio run ./wdio-blockchain-180.conf.ts --autoCompileOpts.tsNodeOpts.project=./test/tsconfig.json",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.0.4",
"@angular/common": "^15.0.4",
"@angular/compiler": "^15.0.4",
"@angular/core": "^15.0.4",
"@angular/forms": "^15.0.4",
"@angular/platform-browser": "^15.0.4",
"@angular/platform-browser-dynamic": "^15.0.4",
"@angular/router": "^15.0.4",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"bignumber.js": "^7.2.1",
"core-js": "^2.5.4",
"disable-scroll": "^0.4.0",
"rxjs": "^6.5.5",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.4",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "15.1.0",
"@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "^15.0.4",
"@angular/compiler-cli": "^15.0.4",
"@angular/language-service": "^15.0.4",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@wdio/cli": "^8.3.3",
"@wdio/jasmine-framework": "^8.3.3",
"@wdio/local-runner": "^8.3.3",
"@wdio/spec-reporter": "^8.3.0",
"chromedriver": "^110.0.0",
"eslint": "^8.28.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsdoc": "37.9.4",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "^7.0.0",
"snyk": "^1.420.1",
"ts-node": "^10.9.1",
"typescript": "~4.8.2",
"wdio-chromedriver-service": "^8.0.1"
},
"snyk": true
}