-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.35 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.35 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ecommerce_api",
"version": "1.5.0",
"description": "Server E-commerce",
"main": "src/app.js",
"scripts": {
"test": "jest --detectOpenHandles",
"lint": "eslint src",
"dev": "ts-node-dev --respawn --env-file .env src/app.ts",
"build": "rimraf ./build && tsc",
"start": "node --env-file .env build/src/app.js"
},
"keywords": [
"pizzeria",
"restaurant",
"food",
"menu",
"online ordering",
"e-commerce",
"web application"
],
"author": "Juan Debandi",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Juudini/pizzeria-api.git"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.0",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^2.0.16",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "4.1.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unicorn": "^48.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"prisma": "^5.10.2",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2",
"unicorn": "^0.0.1"
},
"dependencies": {
"@prisma/client": "5.10.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.0.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"env-var": "^7.4.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.5",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
}
}