-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "d4d-express-api-boilerplate",
"version": "1.0.0",
"description": "A server side element to handle apis. Runs with MongoDB database, Use Mongoose, Passport authentication & Custom seeders.",
"type": "commonjs",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"@types/passport-jwt": "^3.0.9",
"@types/passport-local": "^1.0.35",
"@types/validator": "^13.7.14",
"ts-node": "^10.9.1",
"typescript": "5.0.4"
},
"scripts": {
"start": "set NODE_ENV=production && nodemon src/index.ts",
"prod": "set NODE_ENV=production && node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "set NODE_ENV=development && nodemon src/index.ts",
"build": "tsc"
},
"keywords": [
"NodeJS",
"ExpressJS",
"MongoDB",
"TypeScript",
"JWT"
],
"author": "https://github.com/yaasiin-ayeva",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.0.1",
"helmet": "^7.0.0",
"joi": "^17.10.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"typescript": "^5.2.2",
"validator": "^13.11.0",
"winston": "^3.10.0",
"xlsx": "^0.18.5"
}
}