-
Notifications
You must be signed in to change notification settings - Fork 8.2k
/
Copy pathpackage.json
108 lines (108 loc) · 3.01 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "hackathon-starter",
"version": "8.1.0",
"description": "A boilerplate for Node.js web applications",
"repository": {
"type": "git",
"url": "https://github.com/sahat/hackathon-starter.git"
},
"license": "MIT",
"author": "Sahat Yalkabov",
"contributors": [
"Yashar Fakhari (https://github.com/YasharF)"
],
"scripts": {
"postinstall": "patch-package && npm run scss",
"start": "npm run scss && node app.js",
"test": "nyc mocha --timeout=60000 --exit",
"lint": "eslint \"**/*.js\"",
"scss": "sass --no-source-map --quiet-deps --load-path=./ --update ./public/css:./public/css"
},
"lint-staged": {
"*.js": [
"npm run lint -- --fix"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@googleapis/drive": "^8.14.0",
"@googleapis/sheets": "^9.3.1",
"@lob/lob-typescript-sdk": "^1.3.5",
"@naandalist/patch-package": "^8.1.3",
"@node-rs/bcrypt": "^1.10.7",
"@octokit/rest": "^21.1.0",
"@passport-js/passport-twitter": "^1.0.9",
"@popperjs/core": "^2.11.8",
"axios": "^1.7.9",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.3",
"bootstrap-social": "github:SeattleDevs/bootstrap-social",
"chart.js": "^4.4.7",
"cheerio": "^1.0.0",
"compression": "^1.7.5",
"connect-mongo": "^5.1.0",
"dotenv": "^16.4.7",
"errorhandler": "^1.5.1",
"express": "^4.21.2",
"express-flash": "^0.0.2",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"jquery": "^3.7.1",
"lastfm": "^0.9.4",
"lodash": "^4.17.21",
"lusca": "^1.7.0",
"mailchecker": "^6.0.15",
"moment": "^2.30.1",
"mongoose": "^8.9.6",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.10.0",
"oauth": "^0.10.0",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth": "^2.0.0",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"passport-oauth2-refresh": "^2.2.0",
"passport-openidconnect": "^0.1.2",
"passport-steam-openid": "^1.1.4",
"pug": "^3.0.3",
"sass": "1.83.4",
"stripe": "^17.6.0",
"twilio": "^5.4.3",
"twitch-passport": "^1.0.6",
"validator": "^13.12.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"chai": "^5.1.2",
"eslint": "^9.19.0",
"eslint-config-airbnb-base-extract": "github:SeattleDevs/eslint-config-airbnb-base-extract",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"mocha": "^11.1.0",
"mongodb-memory-server": "^10.1.3",
"nyc": "github:istanbuljs/nyc",
"sinon": "^19.0.2",
"supertest": "^7.0.0"
},
"overrides": {
"node-fetch": {
"whatwg-url": "^14.x",
"gcp-metadata": "^6.x"
},
"mailchecker": {
"rimraf": "4.x",
"glob": "10.x"
}
},
"engines": {
"node": ">=22"
}
}