-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.58 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
86
87
88
89
{
"name": "hs-apply",
"version": "1.0.0",
"description": "Application system for hackathons",
"main": "app.ts",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "tsc -p .",
"postbuild": "gulp",
"test": "jest -i --forceExit",
"test:watch": "jest -i --watch",
"test:coverage": "jest -i --coverage --forceExit",
"start": "ts-node --files src/server.ts | pino-http-print -a -r -t 'yyyy-mm-dd HH:MM:ss.l'",
"start:watch": "node ./node_modules/nodemon/bin/nodemon.js",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"typeorm": "ts-node --files ./node_modules/typeorm/cli.js -f ./src/ormconfig.ts"
},
"repository": {
"type": "GitHub",
"url": "https://github.com/unicsmcr/hs_apply/tree/master"
},
"keywords": [
"hackathon",
"application",
"registration"
],
"author": "UniCS",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"@types/email-templates": "^6.0.0",
"@types/express": "^4.17.1",
"@types/multer": "^1.3.9",
"@types/nodemailer": "^6.4.0",
"@types/passport": "^1.0.1",
"@types/pino": "^6.0.1",
"@types/reflect-metadata": "^0.1.0",
"@unicsmcr/hs_auth_client": "^3.0.1",
"@unicsmcr/pino-http-print": "^2.1.0",
"auto-bind": "^4.0.0",
"axios": "^0.19.2",
"class-validator": "^0.10.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.1.0",
"ejs": "^2.6.2",
"email-templates": "^6.0.2",
"express": "^4.17.1",
"helmet": "^3.22.0",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"multer": "^1.4.2",
"mysql": "^2.17.1",
"nodemailer": "^6.4.16",
"passport": "^0.4.0",
"passport-cookie": "^1.0.6",
"pino-http": "^5.1.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.18",
"typeorm-transactional-cls-hooked": "^0.1.12",
"typescript": "^3.9.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/helmet": "0.0.47",
"@types/jest": "^25.2.3",
"@types/pino-http": "^5.0.3",
"@types/request": "^2.48.5",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@unicsmcr/eslint-config": "0.0.2",
"eslint": "^6.5.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": "^26.0.1",
"nodemon": "^2.0.4",
"source-map-support": "^0.5.13",
"supertest": "^4.0.2",
"ts-jest": "^26.1.0",
"ts-mockito": "^2.4.2",
"ts-node": "^8.3.0"
}
}