-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.55 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.55 KB
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
110
{
"name": "captfencoder",
"version": "1.0.0",
"description": "CaptfEncoder extensible cross platform network security tool suite",
"main": "main.js",
"scripts": {
"dev": "rimraf dist && webpack -w --config webpack.config.js --env.development --progress --profile --bail",
"build": "webpack --config webpack.config.js --env.production --progress --profile --bail",
"build-themes": "node-sass src/style/themes/scss/ -o src/style/themes/build/",
"start-dev": "electron ./dist",
"start": "electron ./prod",
"package": "electron-packager ./prod app --platform=all --arch=x64 --icon=./prod/icons/app_ico --electron-version=6.1.1 --out pkgs --overwrite",
"pack-win": "electron-builder --win portable --projectDir prod",
"pack-linux": "electron-builder --linux tar.gz --projectDir prod",
"pack-mac": "electron-builder --mac --x64 --projectDir prod ",
"pack-mac2": "electron-packager ./prod app --platform=darwin --arch=x64 --icon=./prod/icons/app_ico --electron-version=6.1.1 --out pkgs --overwrite"
},
"author": "",
"license": "MIT",
"dependencies": {
"@angular/animations": "^8.2.11",
"@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.11",
"@angular/compiler": "^8.2.11",
"@angular/core": "^8.2.11",
"@angular/elements": "^8.2.11",
"@angular/forms": "^8.2.11",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "^8.2.11",
"@angular/platform-browser-dynamic": "^8.2.11",
"@angular/platform-server": "^8.2.11",
"@angular/router": "^8.2.11",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"bignumber.js": "^9.0.0",
"bubble_babble": "^0.2.0",
"cheerio": "^1.0.0-rc.3",
"crc-32": "^1.2.0",
"crypto-js": "^3.1.9-1",
"docx": "^5.0.0-rc5",
"dtrace-provider": "^0.8.8",
"egoroof-blowfish": "^2.2.0",
"file-type": "^12.0.0",
"hammerjs": "^2.0.8",
"he": "^1.2.0",
"ipaddr.js": "^1.9.0",
"jimp": "^0.6.4",
"js-base64": "^2.5.1",
"jsencrypt": "^3.0.0-rc.1",
"jsfuck": "^0.4.0",
"json2xls": "^0.1.2",
"jsonexport": "^2.4.1",
"jsqr": "^1.2.0",
"mime-types": "^2.1.24",
"moment-timezone": "^0.5.35",
"nslookup": "^1.1.1",
"officegen": "^0.6.3",
"omggif": "^1.0.9",
"ping": "^0.2.2",
"qrcode": "^1.3.3",
"read-chunk": "^3.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"restify": "^8.4.0",
"restify-clients": "^2.6.7",
"rxjs": "^6.4.0",
"scryptsy": "^2.1.0",
"sm-crypto": "0.0.8",
"text-encoding": "^0.7.0",
"typescript-collections": "^1.3.2",
"utf8": "^3.0.0",
"uuid": "^3.3.2",
"xlsx": "^0.15.1",
"xregexp": "^4.2.4",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular/compiler-cli": "^8.2.11",
"@ngtools/webpack": "^8.3.12",
"@types/axios": "^0.14.0",
"@types/bignumber.js": "^5.0.0",
"@types/crypto-js": "^3.1.43",
"@types/hammerjs": "^2.0.36",
"@types/js-base64": "^2.3.1",
"@types/node": "^11.15.54",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"electron": "^6.1.1",
"electron-packager": "^14.0.6",
"fibers": "^4.0.2",
"file-loader": "^4.0.0",
"html-loader": "^0.5.5",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.13.0",
"raw-loader": "^1.0.0",
"rimraf": "^2.6.3",
"sass": "^1.23.1",
"sass-loader": "^8.0.0",
"style-loader": "^0.23.1",
"tsickle": "^0.35.0",
"typescript": "^3.4.5",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"repository": {
"type": "git",
"url": ""
}
}