-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (58 loc) · 1.64 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
{
"name": "webions",
"version": "0.5.0",
"description": "Browser MMORPG game",
"main": "src/server.js",
"author": "apietryga",
"license": "ISC",
"scripts": {
"_start": "node src/server.js",
"start": "nodemon src/server.js",
"scss": "node-sass --output-style=compressed --recursive public/style/scss --watch -o public/style/",
"__comment": "//npm-run-all --parallel start scss",
"dev": "npm-run-all --parallel start scss",
"start2": "concurrently --names \"WATCH,SERVE\" -c \"bgMagenta.bold,bgGreen.bold\" \"npm run scss\" \"npm run serve\"",
"serve": "lite-server",
"prod": "(npm run start&)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apietryga/webions.git"
},
"keywords": [
"game",
"browser",
"MMORPG"
],
"bugs": {
"url": "https://github.com/apietryga/webions/issues"
},
"homepage": "https://github.com/apietryga/webions#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"chokidar": "^3.5.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-group-routes": "^1.1.0",
"http-shutdown": "^1.2.2",
"json-stringify-pretty-compact": "^3.0.0",
"mailgun": "^0.5.0",
"markdown-it": "^12.3.2",
"mime-types": "^2.1.34",
"mongoose": "^6.5.3",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.3",
"nunjucks-date-filter": "^0.1.1",
"nunjucks-global-uid": "0.0.1",
"redis": "^4.5.0",
"websocket": "^1.0.34",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/redis": "^4.0.11",
"concurrently": "^3.5.0"
}
}