-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.67 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
{
"name": "devcamper",
"version": "0.1.0",
"type": "commonjs",
"scripts": {
"start": "node ./dist/main.js",
"build": "rimraf ./dist && tsup ./src/main.ts",
"dev": "tsx watch ./src/main.ts | pino-pretty",
"test": "vitest",
"seed": "tsx ./seed/seeder.ts"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.0.1",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.3",
"morgan": "^1.10.0",
"node-geocoder": "^4.2.0",
"nodemailer": "^6.9.16",
"pino": "^9.5.0",
"slugify": "^1.4.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/argon2": "^0.15.0",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-mongo-sanitize": "^2.1.0",
"@types/hpp": "^0.2.2",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"@types/node-geocoder": "^3.24.5",
"@types/nodemailer": "^6.4.17",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"pino-pretty": "^13.0.0",
"rimraf": "^3.0.2",
"supertest": "^7.0.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}