-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.76 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
{
"name": "chain-hunter",
"version": "0.1.0",
"description": "Chain Hunter allows you to search multiple blockchains for address, contracts, and transactions.",
"license": "MIT",
"author": "thechainhunter.com",
"engines": {
"node": "10.16.0"
},
"scripts": {
"ng": "ng",
"config": "node ./scripts/set-env.js",
"start": "node server.js",
"build": "npm run config -- --environment=prod && ng build --aot --prod --output-hashing=all --build-optimizer=false",
"devbuild": "npm run config -- --environment=dev && ng build --output-hashing=all && node server.js",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"pree2e": "webdriver-manager update",
"preinstall": "npm install -g @angular/cli",
"postinstall": "ng build --aot --prod",
"deploy": "git push origin master && git push heroku master"
},
"private": true,
"dependencies": {
"@amcharts/amcharts4": "^4.7.19",
"@amcharts/amcharts4-geodata": "^4.1.9",
"@angular/animations": "~8.1.1",
"@angular/cdk": "^8.2.3",
"@angular/common": "~8.1.1",
"@angular/compiler": "~8.1.1",
"@angular/core": "~8.1.1",
"@angular/forms": "~8.1.1",
"@angular/platform-browser": "~8.1.1",
"@angular/platform-browser-dynamic": "~8.1.1",
"@angular/router": "~8.1.1",
"axios": "^0.19.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"btc-xpub-address": "^0.2.0",
"card-validator": "^6.2.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"core-js": "^2.6.9",
"cors": "^2.8.5",
"crypto-ts": "^1.0.2",
"cryptocurrency-icons": "^0.16.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-ip": "^1.0.3",
"font-awesome": "^4.7.0",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"ngx-cookie-service": "^2.2.0",
"ngx-qrcode2": "0.0.9",
"nodemailer": "^6.3.1",
"pg": "^7.12.0",
"primeflex": "^1.0.0-rc.1",
"primeicons": "^2.0.0",
"primeng": "^8.0.2",
"rxjs": "~6.4.0",
"square-connect": "^2.20191023.0",
"tslib": "^1.9.0",
"uuid": "^3.3.3",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.23",
"@angular/cli": "~8.1.1",
"@angular/compiler-cli": "~8.1.1",
"@angular/language-service": "~8.1.1",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "^5.0.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.4.3"
}
}