forked from AltCamp/altcampv1-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.79 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
61
62
63
64
65
66
67
68
69
70
{
"name": "study-buddy",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start:dev": "nodemon ./bin/www",
"lint": "eslint .",
"format:check": "npx prettier --check .",
"format:write": "npx prettier --write .",
"pretest": "node test",
"test": "APP_ENV=test jest --runInBand",
"seed:track": "node ./seeders/trackSeeder.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,md,yml,yaml}": "npm run format:write",
"*.js": "npm run lint"
},
"dependencies": {
"@sentry/node": "^7.54.0",
"app-root-path": "^3.1.0",
"bcrypt": "^5.1.0",
"cloudinary": "^1.37.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"dompurify": "^3.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-joi-validation": "^5.0.1",
"express-rate-limit": "^6.7.0",
"handlebars": "^4.7.7",
"http-status-codes": "^2.2.0",
"joi": "^17.7.0",
"joi-objectid": "^4.0.2",
"jsdom": "^22.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^7.4.1",
"mongoose-autopopulate": "^1.0.1",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.1.30",
"nodemailer": "^6.9.3",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"redis": "^4.6.7",
"slugify": "^1.6.6",
"swagger-ui-express": "^4.6.1",
"winston": "^3.9.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"eslint": "^8.32.0",
"husky": "^4.3.8",
"jest": "^29.3.1",
"lint-staged": "^13.2.2",
"mongodb-memory-server": "^8.11.3",
"nodemon": "^3.0.1",
"prettier": "^2.8.3",
"supertest": "^6.3.3"
}
}