This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 259
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "vorlon",
"version": "0.5.4",
"description": "vorlon",
"main": "Server/server.js",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"body-parser": "^1.20.1",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fancy-log": "^2.0.0",
"http-proxy": "^1.18.1",
"json": "^11.0.0",
"method-override": "^3.0.0",
"minimist": "^1.2.7",
"mkdirp": "^2.1.3",
"mocha": "^10.2.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-local": "~1.0.0",
"passport-twitter": "~1.0.4",
"socket.io": "^4.6.0",
"stylus": "~0.59.0",
"winston": "~3.8.2",
"winston-logs-display": "~1.0.0",
"xmlhttprequest": "~1.8.0"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@types/socket.io": "^3.0.2",
"gulp": "^4.0.2",
"gulp-concat": "~2.6.1",
"gulp-filter": "~7.0.0",
"gulp-less": "~5.0.0",
"gulp-mocha": "~8.0.0",
"gulp-rename": "~2.0.0",
"gulp-sourcemaps": "~3.0.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "~3.0.2",
"gulp-util": "~3.0.8",
"gulp-webserver": "~0.9.1",
"gulp-zip": "~5.1.0",
"merge2": "~1.4.1",
"typescript": "^4.9.5"
},
"scripts": {
"global-deploy-gulp": "npm install -g gulp",
"global-deploy-gulp-cli": "npm install -g gulp-cli",
"build-all": "gulp --gulpfile=./gulpfile.js",
"build": "node disclaimer.js && npm run build-all",
"prepublish": "npm run build",
"start": "node ./Server/server.js"
},
"bin": {
"vorlon": "./bin/vorlon"
}
}