-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.78 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.78 KB
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
{
"name": "snack-track-express",
"version": "1.0.0",
"description": "Express.js/TypeScript migration of SnackTrackAPI",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"@logtail/node": "^0.5.6",
"@logtail/winston": "^0.5.6",
"@sendgrid/mail": "^8.1.6",
"@sentry/node": "^10.19.0",
"@types/multer": "^2.0.0",
"@types/yauzl": "^2.10.3",
"adm-zip": "^0.5.16",
"apple-signin-auth": "^2.0.0",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"csv-parser": "^3.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.1.0",
"express-slow-down": "^3.0.0",
"google-auth-library": "^10.5.0",
"googleapis": "^133.0.0",
"helmet": "^8.1.0",
"html-entities": "^2.6.0",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.2",
"nodemailer": "^7.0.11",
"p-limit": "^3.1.0",
"pg": "^8.11.3",
"redis": "^5.8.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^9.0.0",
"winston": "^3.10.0",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/express-rate-limit": "^5.1.3",
"@types/express-serve-static-core": "^5.0.7",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.4.2",
"@types/nodemailer": "^6.4.14",
"@types/pg": "^8.10.9",
"@types/redis": "^4.0.10",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^9.0.2",
"node-fetch": "^3.3.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}