This repository has been archived by the owner on Jul 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.6 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "snic-congress-backend",
"version": "0.1.0",
"description": "Backend for the new SNiC Congress website.",
"main": "index.ts",
"scripts": {
"db:seed": "ts-node test/database/seedDatabase.ts",
"dev": "concurrently \"nodemon\" \"nodemon -x npx tsoa spec-and-routes\"",
"build": "tsoa spec-and-routes && tsc",
"start": "node build/src/index.js",
"tsoa": "tsoa spec-and-routes",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"gen-client": "nswag openapi2tsclient /input:src/public/swagger.json /output:../SNiC-Congress-Frontend/src/clients/server.generated.ts /ServiceHost:.",
"gen-barcodes:dev": "ts-node src/qrcodes/gen-barcodes.ts",
"gen-barcodes:prod": "node build/qrcodes/gen-barcodes.ts",
"test": "mocha -r ts-node/register --timeout 10000 --file ./test/index.ts --reporter mocha-multi-reporters --reporter-options configFile=mocha.json 'test/**/*.ts' --exit",
"test-file": "mocha -r ts-node/register --timeout 10000 --file ./test/index.ts",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GEWIS/SNiC-Congress-Backend.git"
},
"author": "SNiC 2022 - CelerIT",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/GEWIS/SNiC-Congress-Backend/issues"
},
"homepage": "https://github.com/GEWIS/SNiC-Congress-Backend#readme",
"dependencies": {
"@tsoa/runtime": "^4.1.0",
"archiver": "^5.3.1",
"body-parser": "^1.20.0",
"bs58": "^5.0.0",
"canvas": "^2.10.1",
"connect-typeorm": "^2.0.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.3",
"express-validator": "^6.14.0",
"jsbarcode": "^3.11.5",
"jsonwebtoken": "^8.5.1",
"mime": "^3.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"node-forge": "^1.3.1",
"nodemailer": "^6.7.8",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"qrcode": "^1.5.1",
"reflect-metadata": "^0.1.13",
"sinon": "^14.0.0",
"sqlite3": "^5.0.3",
"swagger-ui-express": "^4.3.0",
"tsoa": "^3.14.1",
"typeorm": "^0.3.6",
"uuid": "^9.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@faker-js/faker": "^6.1.2",
"@types/archiver": "^5.3.1",
"@types/body-parser": "^1.19.2",
"@types/chai-as-promised": "^7.1.5",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/express-flash": "^0.0.2",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.1",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.24",
"@types/node-forge": "^1.3.0",
"@types/nodemailer": "^6.4.6",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"@types/qrcode": "^1.5.0",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.8",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"chai-swag": "^0.1.9",
"concurrently": "^7.1.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-base-typescript": "^1.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"nodemon": "^2.0.15",
"nswag": "^13.15.10",
"nyc": "^15.1.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}