-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.72 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
{
"name": "loadlink",
"version": "1.0.0",
"description": "Connecting Travelers, Vendors, and Customers to Reduce Shipping Costs",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"setup": "npm install",
"start": "node dist/index.js",
"build": "npm run setup && tsc",
"dev": "nodemon --watch '*.ts' --exec 'ts-node' src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/prosper20/Loadlink.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/prosper20/Loadlink/issues"
},
"homepage": "https://github.com/prosper20/Loadlink#readme",
"devDependencies": {
"@types/body-parser": "^1.19.4",
"@types/compression": "^1.7.4",
"@types/cors": "^2.8.15",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.20",
"@types/helmet": "^4.0.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.7",
"@types/node": "^20.8.7",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/dompurify": "^3.0.4",
"@types/jest": "^24.0.18",
"@types/jsdom": "^21.1.4",
"@types/lodash": "^4.14.141",
"@types/uuid": "^9.0.6",
"@types/validator": "^13.11.5",
"bcrypt-nodejs": "^0.0.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dompurify": "^3.0.6",
"express": "^4.18.2",
"express-rate-limit": "^5.0.0",
"jest": "^24.9.0",
"jsonwebtoken": "^8.5.1",
"jsdom": "^22.1.0",
"lodash": "^4.17.15",
"mongoose": "^7.6.3",
"morgan": "^1.10.0",
"rand-token": "^0.4.0",
"redis": "^2.8.0",
"slug": "^1.1.0",
"uuid": "^9.0.1",
"validator": "^13.11.0"
}
}