-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 2.54 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
{
"name": "eosio-angular-app",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --poll=2000 -o",
"serve": "ng serve --poll=2000 -o",
"build": "ng build --watch",
"local": "ng build --aot --buildOptimizer --prod && cp .htaccess /var/www/vapaee.io/.htaccess && cp cert/* /var/www/vapaee.io/ && cd /var/www/vapaee.io && git add -A && git commit -m 'save' && git push && amazon_server_console",
"postinstall": "node src/patch.js; cd contracts/_examples; if [ ! -d 'eosio.contracts' ]; then git clone https://github.com/Telos-Foundation/eosio.contracts; fi; npm run serve",
"save": "git add -A; git commit -m 'save'; git push;",
"pull": "git pull; cp ../airdrop-on-telos/* ./airdrop-on-telos/ -R;",
"prod": "git checkout prod && git merge master -m 'merge master' && ng build --aot --buildOptimizer --prod && git add -A && git commit -m 'update' && git push && amazon_server_console;"
},
"private": true,
"dependencies": {
"@angular/animations": "^6.0.3",
"@angular/common": "^6.0.3",
"@angular/compiler": "^6.0.3",
"@angular/core": "^6.0.3",
"@angular/forms": "^6.0.3",
"@angular/http": "^6.0.3",
"@angular/platform-browser": "^6.0.3",
"@angular/platform-browser-dynamic": "^6.0.3",
"@angular/router": "^6.0.3",
"@ng-bootstrap/ng-bootstrap": "^4.1.0",
"bignumber.js": "^8.0.2",
"bootstrap": "^4.3.1",
"core-js": "^2.5.4",
"eosjs": "^16.0.9",
"fast-csv": "^2.4.1",
"font-awesome": "^4.7.0",
"jdenticon": "^2.1.0",
"jquery": "^3.3.1",
"ng2-google-charts": "^4.0.0",
"ng2-search-filter": "^0.4.7",
"ngx-cookie-service": "^2.1.0",
"ngx-perfect-scrollbar": "^7.2.1",
"popper.js": "^1.14.7",
"rxjs": "^6.2.1",
"rxjs-compat": "^6.3.3",
"scatterjs-core": "^2.3.8",
"scatterjs-plugin-eosjs": "^1.3.10",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.8",
"@angular/cli": "~6.0.8",
"@angular/compiler-cli": "^6.0.3",
"@angular/language-service": "^6.0.3",
"@babel/runtime": "^7.1.5",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "~4.2.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^3.1.3",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "^5.4.1",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": "~2.7.2"
}
}