forked from goto-bus-stop/wikibattle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.35 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
{
"name": "wikibattle",
"description": "1v1 races through Wikipedia article links.",
"version": "1.7.1",
"license": "MIT",
"bugs": "https://github.com/goto-bus-stop/WikiBattle/issues",
"author": "Renée Kooi <renee@kooi.me>",
"bin": "bin/wikibattle",
"engines": {
"node": ">= 10.1"
},
"dependencies": {
"@google-cloud/firestore": "^4.9.2",
"cheerio": "^1.0.0-rc.5",
"closest": "0.0.1",
"component-classes": "^1.2.4",
"component-delegate": "^0.2.3",
"compression": "^1.7.3",
"cpy-cli": "^3.1.1",
"crel": "^3.0.0",
"crypto-random-string": "^3.3.1",
"debug": "^4.3.1",
"dom-event": "^1.0.0",
"empty-element": "^1.0.0",
"express": "^4.17.1",
"make-fetch-happen": "^8.0.14",
"ms": "^2.1.3",
"nanobus": "^4.4.0",
"node-schedule": "^2.0.0",
"p-event": "^4.1.0",
"plausible-tracker": "^0.3.1",
"random-item": "^3.1.0",
"s-ago": "^2.2.0",
"serve-static": "^1.14.1",
"throttleit": "^1.0.0",
"tmp": "0.1.0",
"ws": "^7.4.3",
"ws-events": "^1.0.0",
"xhr": "^2.6.0"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"cssnano": "^4.1.10",
"exorcist": "^2.0.0",
"less": "^4.1.1",
"postcss-cli": "^7.1.0",
"rimraf": "^3.0.0",
"standard": "^16.0.3",
"tinyify": "^3.0.0"
},
"repository": "goto-bus-stop/WikiBattle",
"scripts": {
"start": "node bin/wikibattle",
"lint": "standard",
"test": "npm run lint",
"less": "lessc ./src/client/style.less > ./public/style.css",
"update": "node update.js",
"compile": "browserify --debug -t babelify -p tinyify -e src/client/index.js | exorcist public/app.js.map > public/app.js",
"compile:dev": "browserify --debug -t babelify -e src/client/index.js -o public/app.js",
"minify-wiki-css": "postcss public/wiki.css -o public/wiki.css",
"minify-app-css": "postcss public/style.css -o public/style.css",
"minify-css": "npm run minify-wiki-css && npm run minify-app-css",
"html": "cpy src/client/index.html public/",
"dev": "npm run compile:dev && npm run less && npm run html",
"prod": "npm run less && npm run minify-css && npm run compile && npm run html",
"build": "npm run update && npm run prod",
"prepare": "npm run build"
}
}