forked from wavesplatform/WavesGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.8 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "waves-client",
"version": "1.0.0-beta.13",
"description": "The official client application for the Waves platform",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/wavesplatform/WavesGUI.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/babel-core": "^6.25.2",
"@types/connect": "^3.4.31",
"@types/electron": "^1.6.10",
"@types/fs-extra": "^3.0.3",
"@types/gulp": "^4.0.4",
"@types/gulp-angular-templatecache": "^2.0.3",
"@types/gulp-babel": "^6.1.29",
"@types/gulp-concat": "0.0.30",
"@types/gulp-copy": "0.0.3",
"@types/gulp-htmlmin": "^1.3.30",
"@types/handlebars": "^4.0.36",
"@types/i18next": "^8.4.2",
"@types/jasmine": "^2.6.0",
"@types/jquery": "^3.2.13",
"@types/js-cookie": "^2.1.0",
"@types/less": "0.0.32",
"@types/mime": "^2.0.0",
"@types/node": "^8.0.34",
"@types/serve-static": "^1.7.32",
"autoprefixer": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^14.4.0",
"connect": "^3.6.5",
"electron": "^1.8.2-beta.5",
"electron-builder": "^19.55.3",
"electron-packager": "^11.0.1",
"eslint": "^4.9.0",
"fs-extra": "^4.0.2",
"gulp": "^3.9.1",
"gulp-angular-templatecache": "^2.0.0",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-copy": "^1.0.0",
"gulp-htmlmin": "^3.0.0",
"gulp-s3": "^0.11.0",
"gulp-zip": "^4.0.0",
"handlebars": "^4.0.10",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"less": "^2.7.2",
"mime": "^2.0.3",
"my-local-ip": "^1.0.0",
"pixrem": "^4.0.1",
"postcss-cli": "^4.1.1",
"serve-static": "^1.13.1",
"typescript": "^2.5.3",
"uglify-es": "^3.1.3",
"uglifycss": "0.0.27"
},
"scripts": {
"postinstall": "sh scripts/postinstall.sh",
"preversion": "sh scripts/preversion.sh",
"postversion": "sh scripts/postversion.sh",
"watchts": "sh scripts/watch-typescript.sh",
"lessc": "sh scripts/lessc",
"build": "node_modules/.bin/tsc -p ./ && node_modules/.bin/gulp all",
"server": "npm run build && node server",
"electron:linux": "electron-packager ./dist/desktop/mainnet/min/ --icon=./electron/icons/icon.png --platform=linux --out=./dist/linux",
"electron:win": "electron-packager ./dist/desktop/mainnet/min/ --icon=./electron/icons/icon.ico --platform=win32 --out=./dist/win",
"electron:osx": "electron-packager ./dist/desktop/mainnet/min/ --icon=./electron/icons/icon.icns --platform=darwin --out=./dist/osx",
"electron": "gulp all && npm run electron:linux && npm run electron:win && npm run electron:osx",
"electron-debug": "gulp html-desktop-mainnet-min && node_modules/.bin/electron ./dist/desktop/mainnet/min/"
},
"dependencies": {
"@types/html-minifier": "^1.1.30",
"@uirouter/angularjs": "^1.0.8",
"@waves/event-sender": "^0.4.4",
"angular": "^1.6.6",
"angular-animate": "^1.6.6",
"angular-aria": "^1.6.6",
"angular-material": "^1.1.5",
"angular-ui-router": "^1.0.3",
"bignumber.js": "^4.1.0",
"clipboard": "^1.7.1",
"csv-gen": "^0.0.6",
"d3": "^3.5.17",
"html-minifier": "^3.5.7",
"i18next": "^9.1.0",
"i18next-xhr-backend": "^1.4.3",
"identity-img": "^1.0.0",
"jquery": "^3.2.1",
"js-cookie": "^2.2.0",
"n3-charts": "^2.0.28",
"ng-i18next": "^1.0.5",
"qrcode-reader": "^1.0.3",
"ts-api-validator": "^2.0.0",
"ts-utils": "^6.0.0",
"waves-api": "^0.21.5",
"worker-wrapper": "^1.2.2"
}
}