-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.25 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.25 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "landswar-server",
"version": "0.0.1",
"description": "The LandsWar server which contains the API and the WebSocket server.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start-docker": "docker-compose up",
"stop-docker": "docker-compose stop",
"debug": "SECRET_KEY=landswartopsecret nodemon --debug=0.0.0.0:5858 index.js",
"lint": "eslint .",
"fix-code": "eslint . --fix",
"generate-docs": "apidoc -i src/routes/ -o docs/",
"test": "NODE_ENV=test nyc --check-coverage --all --lines 30 ava --verbose --serial",
"coverage": "nyc report --check-coverage --all --lines 30 --reporter=text-lcov > coverage.lcov && codecov",
"create-db": "node ./scripts/createDatabase.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/landswar/server.git"
},
"keywords": [
"landswar",
"server",
"landswar-server"
],
"author": "Ludovic Lerus <lerus@ludovic.ninja> (https://ludovic.ninja)",
"license": "\tAGPL-3.0",
"bugs": {
"url": "https://github.com/landswar/server/issues"
},
"homepage": "https://github.com/landswar/server#readme",
"dependencies": {
"bluebird": "^3.5.0",
"bookshelf": "^0.10.3",
"boom": "^4.2.0",
"camelcase-keys": "^4.0.0",
"glue": "^4.1.0",
"hapi": "^16.1.0",
"hapi-auth-jwt": "^4.0.0",
"hapi-cors-headers": "^1.0.0",
"hapi-good-winston": "^1.1.1",
"hapi-ioredis": "^2.3.0",
"hapio": "^1.4.0",
"inert": "^4.2.0",
"joi": "^10.2.2",
"jsonwebtoken": "^7.3.0",
"knex": "^0.12.7",
"mysql": "^2.13.0",
"nodemon": "^1.11.0",
"shortid": "^2.2.8",
"socket.io": "^1.7.3",
"socket.io-as-promised": "^1.0.0",
"winston-lludol": "0.0.5"
},
"devDependencies": {
"apidoc": "^0.17.5",
"ava": "^0.19.1",
"codecov": "^2.2.0",
"eslint": "^3.17.1",
"eslint-config-lludol": "^0.1.6",
"ioredis-mock": "^2.4.0",
"nyc": "^10.3.2",
"sqlite3": "^3.1.8"
},
"engines": {
"node": ">=8.0"
},
"ava": {
"files": [
"test/*.js",
"!test/before.js",
"!test/Helper.js"
]
},
"nyc": {
"exclude": [
"coverage/*",
"docs/*",
"test/*",
"index.js"
],
"reporter": [
"lcov",
"text-summary"
]
}
}