This repository was archived by the owner on Sep 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·65 lines (65 loc) · 1.77 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
{
"name": "PunDistanceLearning",
"version": "1.0.0",
"description": "Run: ncu -u; npm install",
"homepage": "https://github.com/Firebird1029/PunDistanceLearning",
"bugs": {
"url": "https://github.com/Firebird1029/PunDistanceLearning/issues",
"email": "brandon.yee150@gmail.com"
},
"license": "MIT",
"author": "Brandon Yee <brandon.yee150@gmail.com> (https://github.com/Firebird1029)",
"contributors": [
""
],
"repository": {
"type": "git",
"url": "https://github.com/Firebird1029/PunDistanceLearning.git"
},
"main": "index.js",
"engines": {
"node": "^11.5.0"
},
"scripts": {
"start": "export DISPLAY=:9.0; npm-run-all --parallel start-xvfb start-pm2",
"dev": "npm-run-all --parallel start-server start-dev-build",
"start-server": "node index.js",
"start-dev-build": "gulp",
"start-xvfb": "Xvfb -ac -screen scrn 1280x2000x24 :9.0 &",
"start-pm2": "pm2 start index.js",
"prep": "export DISPLAY=:9.0; gulp production;",
"kill": "pm2 kill; killall -9 Xvfb;",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "gulp production"
},
"dependencies": {
"babel-core": "^6.26.3",
"bulma": "^0.8.2",
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.1",
"helmet": "^3.22.0",
"nightmare": "^3.0.2",
"npm": "^6.14.5",
"pm2": "^4.4.0",
"pug": "^2.0.4",
"pug-static": "^1.0.1",
"socket.io": "^2.3.0",
"xvfb": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"browser-sync": "^2.26.7",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-cssmin": "^0.2.0",
"gulp-load-plugins": "^2.0.3",
"gulp-nodemon": "^2.5.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"npm-run-all": "^4.1.5"
}
}