-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "dishout",
"version": "2.1.0",
"description": "Food delivery/order management system",
"main": "./src/server.ts",
"scripts": {
"start": "tsx ./src/server.ts --no-cache",
"dev": "nodemon",
"format": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexDev404/dishout.git"
},
"author": "AzureSlate Technologies, AlexDev404",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/AlexDev404/dishout/issues"
},
"homepage": "https://github.com/AlexDev404/dishout#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"bad-words": "^3.0.4",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto-random-string": "^5.0.0",
"eslint": "^8.57.0",
"express": "^4.18.3",
"express-rate-limit": "^7.2.0",
"firebase-admin": "^12.0.0",
"minisearch": "^6.3.0",
"mongoose": "^8.2.1",
"nodemailer": "^6.9.12",
"nodemon": "^3.1.0",
"os": "^0.1.2",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.10",
"@types/bad-words": "^3.0.3",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mongoose": "^5.11.97",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^9.0.6",
"prettier": "^3.0.3"
}
}