-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "technolifeapi",
"version": "1.0.0",
"description": "Technolife API ",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "node ./build/api/index.js",
"build": "tsc",
"tsc": "tsc",
"dev": "ts-node-dev api/index.ts"
},
"author": "Alejandro Garcia",
"license": "ISC",
"dependencies": {
"@paypal/checkout-server-sdk": "^1.0.3",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@types/pg": "^8.11.5",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"cryptr": "^6.3.0",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"handlebars": "^4.7.8",
"jose": "^5.2.4",
"morgan": "^1.10.0",
"nodemailer": "^6.9.13",
"pg": "^8.11.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/cors": "^2.8.17",
"@types/morgan": "^1.9.9",
"@types/nodemailer": "^6.4.14",
"@types/paypal__checkout-server-sdk": "^1.0.8",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-dist": "^3.30.4",
"@types/swagger-ui-express": "^4.1.6",
"concurrently": "^8.2.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}