-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.86 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
{
"name": "bob-tech-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "set NODE_ENV=TEST && nyc mocha test/tests --recursive",
"clean": "rimraf build && mkdir build",
"build": "npm run clean && babel src --out-dir build",
"start": "node build/cluster.js",
"debug": "nodemon --inspect --exec babel-node debug.js",
"lint": "./node_modules/.bin/eslint src test",
"validate": "cls & concurrently -n test,lint,outdated \"npm run test\" \"npm run lint\" \"npm outdated\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cibergarri/bob-tech-test.git"
},
"author": "Javier Garrido",
"license": "ISC",
"bugs": {
"url": "https://github.com/cibergarri/bob-tech-test/issues"
},
"homepage": "https://github.com/cibergarri/bob-tech-test#readme",
"dependencies": {
"@babel/runtime": "7.4.4",
"body-parser": "1.19.0",
"chai": "4.2.0",
"chai-http": "4.3.0",
"express": "4.16.4",
"mongoose": "5.5.4",
"sinon": "7.3.2",
"socket.io": "2.2.0",
"winston": "3.2.1"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.4",
"@babel/node": "7.2.2",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/register": "7.4.4",
"concurrently": "4.1.0",
"dotenv": "7.0.0",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"mocha": "6.1.4",
"nodemon": "1.18.11",
"nyc": "14.0.0",
"rimraf": "2.6.3"
},
"nyc": {
"require": [
"@babel/register"
],
"sourceMap": false,
"include": [
"src/**/*.js"
],
"reporter": [
"text",
"html"
]
}
}