-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "game-room",
"version": "1.0.0",
"description": "WSAO Backend para la gestión de las sesiones de juego o Game Room.",
"main": "app.js",
"scripts": {
"start": "node app.js | node_modules/.bin/pino-pretty -c -l",
"lint": "eslint .",
"test": "LOG_LEVEL=error node_modules/.bin/mocha -c --timeout 10000 --exit tests",
"test:junit-report": "LOG_LEVEL=error node_modules/.bin/mocha --timeout 5000 --exit --reporter mocha-junit-reporter --reporter-options mochaFile=./report.xml tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnad-io/ddash-backend-game-room.git"
},
"keywords": [
"nodejs"
],
"author": "CNAD Team - Red Hat LATAM",
"license": "ISC",
"bugs": {
"url": "https://github.com/cnad-io/wsao-1-back/issues"
},
"homepage": "https://github.com/cnad-io/wsao-1-back#readme",
"dependencies": {
"bluebird": "^3.5.5",
"infinispan": "^0.6.0",
"pino": "^5.12.6",
"pino-pretty": "^3.2.0",
"redis": "^2.8.0",
"request": "^2.88.0",
"socket.io": "^2.2.0",
"socket.io-redis": "^5.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^5.16.0",
"husky": "^2.4.1",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.1",
"socket.io-client": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}