-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "hackathon_attendee_hub",
"version": "2.0.0",
"description": "The Hub system for hackathons",
"main": "app.ts",
"engines": {
"node": ">=9.0.0"
},
"scripts": {
"build": "tsc -p .",
"postbuild": "gulp",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "ts-node --files src/server.ts",
"start:watch": "node ./node_modules/nodemon/bin/nodemon.js",
"lint": "eslint src --ignore-pattern \"src/public/**/*\" --ext .ts",
"lint:fix": "eslint src --ignore-pattern \"src/public/**/*\" --ext .ts --fix"
},
"repository": {
"type": "GitHub",
"url": "https://github.com/hacksoc-manchester/Hackathon_Attendee_Hub/tree/master"
},
"author": "CSSoc/HackSoc",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/morgan": "^1.7.35",
"@types/node": "^10.14.6",
"@types/passport-local": "^1.0.33",
"@types/pbkdf2": "^3.0.0",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.17",
"@types/uuid": "^3.4.4",
"@unicsmcr/hs_auth_client": "^3.0.1",
"@unicsmcr/hs_discord_bot_api_client": "0.0.1",
"auto-bind": "^4.0.0",
"body-parser": "^1.19.0",
"class-validator": "^0.9.1",
"cookie-parser": "^1.4.4",
"dotenv": "^6.2.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-session": "^1.16.1",
"http": "0.0.0",
"inversify": "^5.0.1",
"morgan": "^1.9.1",
"mysql": "^2.17.1",
"passport": "^0.4.0",
"passport-cookie": "^1.0.6",
"passport-local": "^1.0.0",
"pbkdf2": "^3.0.17",
"pg": "^7.10.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^7.0.1",
"typeorm": "^0.2.16",
"typescript": "^3.9.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/errorhandler": "0.0.32",
"@types/jest": "^23.3.14",
"@types/supertest": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@unicsmcr/eslint-config": "0.0.2",
"errorhandler": "^1.5.0",
"eslint": "^7.3.1",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-terser": "^1.2.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"sqlite3": "^4.2.0",
"supertest": "^3.4.2",
"ts-jest": "^24.0.2",
"ts-mockito": "^2.3.1"
}
}