-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "bb-practicum-team-4-back",
"version": "1.0.0",
"description": "Back-End Repo for Team 4 of Deer/Dove Practicum",
"main": "app.js",
"scripts": {
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest --watchAll=false --detectOpenHandles --silent --testPathIgnorePatterns=src",
"test:watch": "jest --watchAll=true --detectOpenHandles --testPathIgnorePatterns=src",
"generate-api-docs": "node ./swagger.js",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\""
},
"author": "",
"license": "ISC",
"dependencies": {
"argon2": "^0.40",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"email-templates": "^11.1.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-basic-auth": "^1.2.1",
"express-favicon": "^2.0.4",
"express-fileupload": "^1.4.3",
"express-rate-limit": "^6.8.1",
"express-session": "^1.17.3",
"express-static-gzip": "^2.1.7",
"express-xss-sanitizer": "^1.1.6",
"firebase-admin": "^12.0.0",
"helmet": "^7.0.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.1",
"logger": "^0.0.1",
"mongo-sanitize": "^1.1.0",
"mongoose": "^7.4.1",
"morgan": "^1.10.0",
"nodemailer": "^6.9.4",
"passport": "^0.6.0",
"socket.io": "^4.7.2",
"spotify-web-api-node": "^5.0.2",
"stripe": "^13.0.0",
"swagger-ui-dist": "^5.4.2",
"toastify-js": "^1.12.0",
"validator": "^13.9.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^14.0.0",
"mongodb-memory-server": "^8.15.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"socket.io-client": "^4.7.2",
"supertest": "^6.3.3",
"swagger-autogen": "^2.23.5",
"swagger-jsdoc": "^6.2.8"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"npm run format"
]
}
}