summaryrefslogtreecommitdiff
path: root/goodgame/package.json
blob: 70799447401f5679fc37cc5c8903daec465ea3c9 (plain)
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": "goodgame-application",
  "version": "1.0.0",
  "description": "Goodgame application test",
  "main": "start.js",
  "engines": {
    "node": ">= 11.1.0"
  },
  "directories": {
    "doc": "./src/docs"
  },
  "scripts": {
    "prod": "node ./start.js",
    "watch": "nodemon ./src/start.js --ignore public/",
    "start": "concurrently \"npm run watch\" \"npm run eslintw\"",
    "eslintw": "esw -w . --ext .js",
    "eslint": "eslint . --ext .js",
    "test": "nyc mocha --timeout 100000 --exit"
  },
  "author": "Roger Gonzalez",
  "license": "MIT",
  "dependencies": {
    "body-parser": "^1.18.3",
    "cors": "^2.8.5",
    "dotenv": "^6.1.0",
    "express": "^4.16.4",
    "express-validator": "^5.3.0",
    "express-winston": "^3.0.1",
    "helmet": "^3.15.0",
    "swagger-jsdoc": "^3.2.3",
    "swagger-ui-express": "^4.0.1",
    "validator": "^10.9.0",
    "winston": "^3.1.0"
  },
  "devDependencies": {
    "chai": "^4.2.0",
    "chai-http": "^4.2.0",
    "concurrently": "^4.0.1",
    "eslint": "^5.9.0",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-config-prettier": "^4.0.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-prettier": "^3.0.1",
    "eslint-watch": "^4.0.2",
    "mocha": "^5.2.0",
    "nodemon": "^1.18.7",
    "nyc": "^13.1.0",
    "prettier": "^1.16.4"
  }
}