-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.19 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
74
{
"name": "minor-wot-server",
"private": true,
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && app/server.js",
"fix": "prettier --single-quote --trailing-comma none --write \"app/src/*.js\" \"app/server.js\"",
"build-js": "browserify -t [ babelify --presets [ es2015 ] ] app/src/app.js -p bundle-collapser/plugin | esmangle > app/public/app.js",
"build-css": "postcss app/src/*.css --use postcss-cssnext | csso -o app/public/style.css",
"build": "npm run build-js & npm run build-css",
"dev-server": "DEBUG=luaus nodemon app/server.js",
"dev-client": "nodemon -e css,js --watch src/*.* --watch views/*.* --exec \"npm run build\"",
"precommit": "lint-staged"
},
"lint-staged": {
"app/server.js": [
"prettier --single-quote --trailing-comma none",
"git add"
],
"app/src/*.js": [
"prettier --single-quote --trailing-comma none",
"git add"
]
},
"keywords": [
"luaus",
"real",
"time",
"scoreboard"
],
"author": "Rijk van Zanten <rijkvanzanten@me.com> (rijks.website)",
"contributors": [
"Rijk van Zanten <rijkvanzanten@me.com> (rijks.website)",
"Berend Pronk <berendpronk1994@gmail.com> (oege.ie.hva.nl/~pronkb001/)"
],
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.1",
"bufferutil": "^3.0.0",
"convert-range": "^1.0.0",
"debounce": "^1.0.2",
"debug": "^2.6.6",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"is-reachable": "^2.3.2",
"node-fetch": "^1.6.3",
"node-tweet-stream": "^2.0.1",
"shortid": "^2.2.8",
"socket.io": "^2.0.1",
"throttle-debounce": "^1.0.1",
"twitter": "^1.7.0",
"utf-8-validate": "^3.0.1",
"vdom-to-html": "^2.3.1",
"virtual-dom": "^2.1.1",
"ws": "^2.2.3"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"bundle-collapser": "^1.2.1",
"csso-cli": "^1.0.0",
"esmangle": "^1.0.1",
"husky": "^0.13.3",
"lint-staged": "^3.4.1",
"nodemon": "^1.11.0",
"postcss": "^5.2.17",
"postcss-cli": "^3.1.1",
"postcss-cssnext": "^2.10.0",
"prettier": "^1.2.2"
}
}