forked from SHSGames/shsgames.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.45 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
{
"name": "shsgames",
"version": "2.0.0",
"description": "https://shsgames.herokuapp.com/",
"scripts": {
"start": "npm run dev",
"serve": "node production.js",
"less": "lessc -x ./www/src/less/style.less ./www/src/css/main.css",
"dev": "concurrently --kill-others \"npm run sfrontend\" \"npm run sbackend\"",
"build": "sh updater.sh && rm -Rf dist/ && webpack --config webpack.production.js && cp -r www/ build/ && rm -Rf build/app && cp -r build/. dist/ && rm -Rf build/",
"photon": "npm run less && cd ./www/src/ && rm -rf photon/ && git clone https://github.com/PhotonCSS/Photon.git photon && rm -rf photon/.git && npm run less",
"sfrontend": "webpack -d && cp www/index.html dist/index.html && webpack-dev-server --content-base www/ --inline --history-api-fallback",
"sbackend": "nodemon backend.js",
"rebase": "git stash && git fetch --all && git pull && git reset --hard origin/master && sh cache-clear.sh && npm run build"
},
"author": "Josh Merlino",
"license": "MIT",
"engines": {
"node": "12.x.x"
},
"dependencies": {
"@google-cloud/storage": "^2.5.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-http-to-https": "^1.1.4",
"formidable": "^1.2.1",
"https": "^1.0.0",
"node-jsencrypt": "^1.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.11.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.2",
"css-loader": "^2.1.1",
"dayjs": "^1.8.12",
"dir-loader": "^0.3.0",
"expose-loader": "^0.7.5",
"file-loader": "^4.2.0",
"highlight.js": "^9.15.10",
"jsencrypt": "^3.0.0-rc.1",
"json-loader": "^0.5.7",
"less": "^3.10.3",
"less-loader": "^4.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"remarkable": "^2.0.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^2.2.1",
"text-loader": "0.0.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.2.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.16.5"
}
}