forked from sahat/hackathon-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.39 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
{
"name": "hackathon-starter",
"version": "9.0.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": {
"clean-install": "rm -rf node_modules && rm -rf package-lock.json && rm -rf tmp && npm install",
"lint": "eslint \"**/*.js\" --fix && prettier . --write",
"lint-check": "eslint \"**/*.js\" && prettier . --check",
"postinstall": "patch-package && npm run scss",
"prepare": "husky",
"scss": "sass --no-source-map --silence-deprecation=import --quiet-deps --load-path=./ --update ./public/css:./public/css",
"start": "npm run scss && node app.js",
"test": "c8 --temp-directory tmp/coverage mocha --timeout=60000 --exit"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@googleapis/drive": "^12.0.0",
"@googleapis/sheets": "^9.7.0",
"@huggingface/inference": "^2.8.1",
"@langchain/community": "^0.3.41",
"@langchain/core": "^0.3.49",
"@langchain/mongodb": "^0.1.0",
"@langchain/textsplitters": "^0.1.0",
"@lob/lob-typescript-sdk": "^1.3.5",
"@naandalist/patch-package": "^8.1.3",
"@node-rs/bcrypt": "^1.10.7",
"@octokit/rest": "^21.1.1",
"@passport-js/passport-twitter": "^1.0.10",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.5",
"bootstrap-social": "github:SeattleDevs/bootstrap-social",
"bowser": "^2.11.0",
"chart.js": "^4.4.9",
"cheerio": "^1.0.0",
"compression": "^1.8.0",
"connect-mongo": "^5.1.0",
"dotenv": "^16.5.0",
"errorhandler": "^1.5.1",
"express": "^5.1.0",
"express-flash": "^0.0.2",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"jquery": "^3.7.1",
"langchain": "^0.3.24",
"lastfm": "^0.9.4",
"lusca": "^1.7.0",
"mailchecker": "^6.0.17",
"moment": "^2.30.1",
"mongodb": "^6.16.0",
"mongoose": "^8.14.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.10.1",
"oauth": "^0.10.2",
"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.5",
"pdfjs-dist": "^5.2.133",
"pug": "^3.0.3",
"sass": "^1.87.0",
"stripe": "^18.0.0",
"twilio": "^5.5.2",
"twitch-passport": "^1.0.6",
"validator": "^13.15.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.8",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.18.0",
"@prettier/plugin-pug": "^3.3.0",
"c8": "^10.1.3",
"chai": "^5.2.0",
"eslint": "^9.25.1",
"eslint-config-airbnb-base-extract": "github:SeattleDevs/eslint-config-airbnb-base-extract",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"mocha": "^11.1.0",
"mongodb-memory-server": "^10.1.4",
"prettier": "^3.5.3",
"sinon": "^20.0.0",
"supertest": "^7.1.0"
},
"overrides": {
"@sinonjs/samsam": "github:SeattleDevs/samsam.git"
},
"engines": {
"node": ">=22.13.1"
}
}