-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "serve-and-shine",
"version": "1.0.0",
"author": "Sarah Abu irmeileh",
"main": "./dist/app.js",
"type": "module",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build-tsc": "tsc -w",
"run-watch": "nodemon --loader ts-node/esm ./dist/app.js",
"dev": "concurrently \"npm:build-tsc\" \"npm:run-watch\"",
"test": "tsc && jest",
"build": "tsc --project ."
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.427.0",
"@aws-sdk/client-ses": "^3.429.0",
"@types/express-fileupload": "^1.4.2",
"aws-sdk": "^2.1476.0",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"debug": "~2.6.9",
"dotenv": "^16.3.1",
"email-validator": "^2.0.4",
"express": "^4.18.2",
"express-fileupload": "^1.4.1",
"html-pdf": "^3.0.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql2": "^3.6.1",
"puppeteer": "^21.3.8",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"typeorm": "^0.3.17",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@types/aws-lambda": "^8.10.124",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.5",
"@types/express": "^4.17.20",
"@types/html-pdf": "^3.0.2",
"@types/jest": "^29.5.5",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.6",
"@types/node": "^20.5.6",
"@types/swagger-jsdoc": "^6.0.2",
"@types/swagger-ui-express": "^4.1.5",
"@types/uuid": "^9.0.5",
"concurrently": "^8.2.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}