-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 KB
/
package.json
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
{
"name": "nodejs-boilerplate",
"version": "1.0.0",
"description": "Nodejs Express & Typescript Boilerplate",
"main": "index.js",
"repository": "[email protected]:MusahMusah/nodejs-boilerplate.git",
"author": "MusahMusah <[email protected]>",
"license": "MIT",
"keywords": [
"Node",
"Typescript",
"Boilerplate",
"Express"
],
"scripts": {
"build": "rm -rf build/ && tsc",
"dev": "nodemon src/Bootstrap.ts",
"start": "node build/src/Bootstrap.js",
"test": "jest"
},
"dependencies": {
"@typegoose/typegoose": "^12.7.0",
"async-lock": "^1.4.1",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"detect-port": "^1.6.1",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"mailgun.js": "^10.2.3",
"moment": "^2.30.1",
"mongodb-memory-server": "^10.0.0",
"mongoose": "^8.6.1",
"numbro": "^2.5.0",
"redis": "^4.7.0",
"sinon": "^18.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/async-lock": "^1.4.2",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/detect-port": "^1.3.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jest-sinon": "^1.0.5",
"jest": "^29.7.0",
"jest-sinon": "^1.1.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}