-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.58 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
{
"name": "project",
"version": "1.0.0",
"description": "",
"main": "./dist/main.js",
"type": "module",
"scripts": {
"test": "tsc && NODE_OPTIONS='--experimental-vm-modules --experimental-specifier-resolution=node' DOTENV_CONFIG_PATH=.env.test jest",
"build-tsc": "tsc -w",
"run-watch": "nodemon ./dist/app.js",
"dev": "concurrently \"npm:build-tsc\" \"npm:run-watch\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.6",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.1",
"@types/node": "^20.5.7",
"concurrently": "^8.2.1",
"supertest": "^6.3.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.428.0",
"@aws-sdk/client-ses": "^3.433.0",
"@types/cookie-parser": "^1.4.4",
"@types/jsonwebtoken": "^9.0.3",
"@types/node-schedule": "^2.1.2",
"@types/stripe": "^8.0.417",
"@types/uuid": "^9.0.6",
"@types/validator": "^13.11.2",
"bcrypt": "^5.1.1",
"chatgpt": "^5.2.5",
"check-password-strength": "^2.0.7",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql": "^2.18.1",
"node-schedule": "^2.1.1",
"nodemon": "^3.0.1",
"reflect-metadata": "^0.1.13",
"stripe": "^14.1.0",
"typeorm": "^0.3.17",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"winston": "^3.11.0"
}
}