-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.26 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
110
111
112
113
114
115
116
117
118
119
120
{
"name": "ngi-sync",
"_moduleAliases": {
"@root": "dist/"
},
"version": "1.0.0",
"description": "",
"bin": "./bin/ngi-sync",
"main": "dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx webpack --watch",
"build": "npx webpack --config webpack.config.prod.js",
"compile-win": "pkg . --targets node18-win-x64",
"compile-linux": "pkg . --targets node18-linux"
},
"pkg": {
"scripts": [
"dist/**/*.js",
"node_modules/node-pty/**/*.js"
],
"assets": [
"dist/example.yaml"
],
"targets": [
"node18-win-x64",
"node18-linux"
],
"outputPath": "dist_prod"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/inquirer": "^7.3.3",
"@types/lodash": "^4.14.179",
"@types/minimist": "^1.2.2",
"@types/tsc-watch": "^4.2.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-minify": "^0.5.1",
"copy-webpack-plugin": "^10.2.4",
"ts-loader": "^9.2.7",
"tsc-watch": "^4.6.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/async": "^3.2.6",
"@types/fs-extra": "^9.0.12",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.168",
"@types/minimist": "^1.2.1",
"@types/node-redis-pubsub": "^3.0.0",
"@types/restore-cursor": "^3.1.0",
"@types/ssh2": "^0.5.48",
"@types/yaml": "^1.9.7",
"async": "^3.2.0",
"better-queue": "^3.8.12",
"better-sqlite3": "^11.3.0",
"chalk": "^4.1.1",
"chokidar": "3.5.2",
"death": "^1.1.0",
"dotenv": "^8.6.0",
"eventemitter2": "^6.4.4",
"filendir": "^2.0.1",
"folder-encrypt": "^1.1.7",
"gulp": "^5.0.0",
"ignore": "^5.1.8",
"inquirer": "^8.2.0",
"inquirer-autosubmit-prompt": "^0.2.0",
"inquirer-file-tree-selection-prompt": "^1.0.12",
"inquirer-search-list": "^1.2.6",
"is-cygwin": "^2.0.0",
"jsonplus": "^1.2.0",
"lodash": "^4.17.21",
"log4js": "^6.3.0",
"md5": "^2.3.0",
"micromatch": "^4.0.4",
"minimist": "^1.2.5",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mustache": "^4.2.0",
"named-routes": "^2.0.7",
"node-multithread": "^1.0.4",
"node-notifier": "^10.0.0",
"node-pty": "^1.0.0",
"object-scan": "^17.0.0",
"observatory": "^1.0.0",
"parse-gitignore": "^1.0.1",
"readdirp": "^3.6.0",
"restore-cursor": "^4.0.0",
"rsync": "^0.6.1",
"scp2": "^0.5.0",
"serialize-error": "^8.0.1",
"source-map-support": "^0.5.21",
"ssh-config": "^4.0.6",
"ssh2": "^1.16.0",
"ssh2-config": "^0.1.0",
"ssh2-sftp-client": "^9.1.0",
"stream-equal": "^2.0.1",
"ts-node": "^10.6.0",
"tslib": "^2.3.1",
"tslint": "^6.1.3",
"tspath": "^1.2.10",
"typescript": "^4.6.2",
"uberproto": "^2.0.6",
"upath": "^2.0.1",
"webpack": "^5.70.0",
"window-size": "^1.1.1",
"workerpool": "^6.1.5",
"xxhash-addon": "^2.0.3",
"yaml": "^2.4.2"
}
}