This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
{
"name": "mmt-backend",
"version": "0.0.1",
"description": "mapmytickets nodejs backend",
"main": "src/server.ts",
"scripts": {
"start": "ts-node src/server.ts",
"test": "mocha --timeout 15000 --exit -r ts-node/register src/endpoints/**/__tests__/*.test.ts",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q src/server.ts\"",
"swagger-autogen": "ts-node swagger.ts"
},
"keywords": [],
"author": "leonard huth",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^6.9.5",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/mongodb-memory-server": "^2.3.0",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"mailgun.js": "^9.0.1",
"mailtrap": "^3.1.1",
"mongoose": "^7.0.3",
"node-fetch": "^3.3.1",
"nodemailer": "^6.9.3",
"pdfmake": "^0.2.7",
"qrcode": "^1.5.3",
"roboto-font": "^0.1.0",
"stripe": "^12.6.0",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3",
"ts-jest": "^29.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/chai": "^4.3.5",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"swagger-autogen": "^2.23.1",
"ts-node": "^9.1.1",
"typescript": "^5.0.4"
}
}