aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: bd3d71aeb404e39ba3a51b0e9e80b6f3f8af2460 (plain) (blame)
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
{
  "name": "ao-coverage",
  "version": "0.3.0",
  "description": "Simple code coverage storage and server",
  "repository": {
    "type": "git",
    "url": "https://git.submelon.dev/kjhoerr/ao-coverage.git"
  },
  "main": "build/index.js",
  "scripts": {
    "start:dev": "tsc-watch --onSuccess \"node ./build/index.js\"",
    "start": "tsc && node ./build/index.js",
    "start:prod": "tsc && NODE_ENV=production node ./build/index.js",
    "format": "prettier --write 'src/**/*.ts'",
    "lint": "eslint 'src/**/*.ts'",
    "lint:fix": "eslint --fix 'src/**/*.ts'",
    "tsc": "tsc"
  },
  "author": "Kevin J Hoerr <kjhoerr@submelon.tech>",
  "license": "Parity-7.0.0",
  "dependencies": {
    "@types/express": "^4.17.2",
    "@types/jsdom": "^12.2.4",
    "@types/mongodb": "^3.3.12",
    "badgen": "3.0.1",
    "dotenv": "8.2.0",
    "express": "4.17.1",
    "express-winston": "^4.0.1",
    "handlebars": "^4.5.3",
    "jsdom": "^15.2.1",
    "mongodb": "^3.3.5",
    "typescript": "^3.7.3",
    "winston": "^3.2.1"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^2.11.0",
    "@typescript-eslint/parser": "^2.11.0",
    "eslint": "^6.7.2",
    "eslint-config-prettier": "^6.7.0",
    "eslint-plugin-prettier": "^3.1.1",
    "prettier": "^1.19.1",
    "tsc-watch": "^4.0.0"
  }
}