aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 560dd1d2dc50b187504c2328037ffbe607136838 (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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
  "name": "cs3099jhbe4",
  "description": "2017 Junior Honours Project - Backend Group 4",
  "main": "index.ts",
  "license": "UNLICENSED",
  "scripts": {
    "_test": "PORT=4321 mocha --reporter spec -r ts-node/register",
    "test": "yarn _test './test/**/*.test.ts'",
    "test:routes": "yarn _test './test/**/*.routes.test.ts'",
    "test:unit": "yarn _test './test/**/*.unit.test.ts'",
    "test:routes:db": "yarn _test './test/**/*database.unit.test.ts'",
    "test:routes:auth": "yarn _test './test/**/*auth.routes.test.ts'",
    "test:routes:index": "yarn _test './test/**/*index.routes.test.ts'",
    "test:routes:protocol": "yarn _test './test/**/*protocol.routes.test.ts'",
    "docs": "typedoc --out 'docs' --readme 'README.md' --name 'St Andrews Junior Honours 2017/18 - Team BE4' --module commonjs --target ES6 --exclude '*.test.ts' --excludeExternals --includeDeclarations --ignoreCompilerErrors --disableOutputCheck 'src'",
    "run:postgres": "pg_ctl start",
    "local": "ts-node src/index.ts",
    "_lint": "tslint -p './tsconfig.json' -c './tslint.json'",
    "lint": "yarn _lint --fix --force './src/**/*.ts'",
    "lint:tests": "yarn _lint --fix --force './test/**/*.ts'",
    "start": "pm2 restart ecosystem.config.js",
    "reload": "pm2 reload ecosystem.config.js",
    "stop": "pm2 stop all",
    "console": "pm2 monit"
  },
  "repository": {
    "type": "git",
    "url": "https://gitlab.cs.st-andrews.ac.uk/cs3099group-be-4/project-code.git"
  },
  "keywords": [
    "backend",
    "database",
    "university",
    "honours",
    "project"
  ],
  "author": "2017 Junior Honours Backend Group 4",
  "devDependencies": {
    "@types/chai": "4.1.3",
    "@types/chai-http": "3.0.4",
    "@types/debug": "0.0.30",
    "@types/mocha": "5.2.0",
    "@types/mocha-each": "^1.1.0",
    "chai": "4.1.2",
    "chai-http": "4.0.0",
    "mocha": "5.1.1",
    "tslint": "^5.9.1",
    "typedoc": "0.11.1",
    "yarn-check": "^0.0.3"
  },
  "dependencies": {
    "@types/body-parser": "1.16.8",
    "@types/colors": "^1.1.3",
    "@types/csv-parse": "^1.1.11",
    "@types/csv-stringify": "^1.4.2",
    "@types/express": "^4.0.33",
    "@types/express-jwt": "0.0.40",
    "@types/file-type": "^5.2.1",
    "@types/fs-extra": "^5.0.2",
    "@types/jsonwebtoken": "^7.2.5",
    "@types/mime-types": "^2.1.0",
    "@types/morgan": "^1.7.32",
    "@types/multer": "^1.3.6",
    "@types/node": "9.6.6",
    "@types/passport": "^0.4.2",
    "@types/passport-local": "^1.0.32",
    "@types/redis": "^2.8.6",
    "@types/sequelize": "^4.27.5",
    "@types/sharp": "^0.17.6",
    "@types/sqlite3": "^3.1.1",
    "@types/supertest": "^2.0.4",
    "@types/uuid": "^3.4.3",
    "@types/winston": "^2.3.8",
    "@types/xml-parser": "^1.2.29",
    "body-parser": "^1.18.2",
    "colors": "^1.1.2",
    "corser": "^2.0.1",
    "csv-parse": "^2.2.0",
    "csv-stringify": "^3.0.0",
    "express": "^4.16.2",
    "express-jwt": "^5.3.0",
    "file-system": "^2.2.2",
    "file-type": "^7.6.0",
    "jsonwebtoken": "^8.1.1",
    "mime-types": "^2.1.18",
    "mocha-each": "^1.1.0",
    "morgan": "^1.9.0",
    "os": "^0.1.1",
    "passport": "^0.4.0",
    "passport-local": "^1.0.0",
    "pg": "^7.4.1",
    "pg-hstore": "^2.3.2",
    "pg-native": "^2.2.0",
    "pm2": "^2.10.2",
    "pmx": "^1.6.4",
    "redis": "^2.8.0",
    "redis-server": "^1.2.0",
    "reflect-metadata": "^0.1.12",
    "sequelize": "^4.32.7",
    "sequelize-typescript": "^0.6.2",
    "sharp": "^0.20.1",
    "sqlite3": "^4.0.0",
    "supertest": "^3.0.0",
    "ts-node": "6.0.0",
    "typescript": "^2.7.1",
    "uuid": "^3.2.1",
    "winston": "^2.4.0",
    "xlsx": "^0.12.10",
    "xml-parser": "^1.2.1"
  }
}