-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.57 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
{
"name": "lightterm",
"version": "1.0.0",
"description": "A browser based Linux Terminal emulator",
"main": "./lib/main.js",
"repository": "https://mygit.th-deg.de/hz29287/lightterm",
"author": "Hamit Zor <[email protected]>",
"license": "MIT",
"scripts": {
"gulp-watch": "gulp -f ./gulpfile-watch.js",
"start": "node -r source-map-support/register src/server/start-app.js",
"start-watch": "nodemon -w src/server/app.js -r source-map-support/register src/server/start-app.js",
"build": "([ -f ./config.json ] || (cp ./config-default.json ./config.json && echo '\\n\\e[1;33mconfig.json configuration file is not found, copying the default one...\\n\\e[0m')) && webpack --mode production && gulp -f ./gulpfile.js",
"build-watch": "([ -f ./config.json ] || (cp ./config-default.json ./config.json && echo '\\n\\e[1;33mconfig.json configuration file is not found, copying the default one...\\n\\e[0m')) && webpack --watch --mode development"
},
"dependencies": {
"@babel/preset-env": "^7.7.1",
"body-parser": "^1.19.0",
"connect-busboy": "^0.0.2",
"core-js": "^3.4.1",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"fs-extra": "^8.1.0",
"node-pty": "^0.9.0",
"regenerator-runtime": "^0.13.3",
"webpack": "4.28.4"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"babel-loader": "^8.0.6",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"nodemon": "^1.19.4",
"webpack-cli": "^3.3.10"
}
}