-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "Nodejs-sample-code",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn src/app.ts",
"build": "tsc",
"start": "node dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vatsalshah0791/Nodejs-sample-code/.git"
},
"author": "Vatsal Shah",
"license": "MIT",
"bugs": {
"url": "https://github.com/vatsalshah0791/Nodejs-sample-code/issues"
},
"homepage": "https://github.com/vatsalshah0791/Nodejs-sample-code/#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.363.0",
"@aws-sdk/node-http-handler": "^3.360.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cybersource-rest-client": "^0.0.49",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"jwk-to-pem": "^2.0.5",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"nodemailer": "^6.9.7",
"pg": "^8.11.0",
"uuid": "^9.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.0",
"@types/node": "^20.1.7",
"@types/nodemailer": "^6.4.14",
"@types/pg": "^8.10.1",
"@types/uuid": "^9.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "5.0.4"
}
}