-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 2.81 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
{
"name": "weconnect-server",
"version": "1.0.1",
"description": "Server for WeConnect, a platform for organizing volunteers.",
"repository": {
"type": "git",
"url": "https://github.com/wevote/weconnect-server.git"
},
"license": "MIT",
"author": "WeVote Team (https://github.com/wevote)",
"scripts": {
"postinstall": "patch-package",
"start": "nodemon weconnect-server.js",
"prod": "node weconnect-server.js",
"test": "nyc mocha --timeout=60000 --exit",
"lint": "eslint \"**/*.js\"",
"prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then husky install; fi",
"lintStage": "node_modules/.bin/lint-staged"
},
"lint-staged": {
"*.js": [
"npm run lint -- --fix"
]
},
"pre-commit": "lint-staged",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@googleapis/drive": "^8.4.0",
"@googleapis/sheets": "^5.0.5",
"@ladjs/bootstrap-social": "^7.0.2",
"@lob/lob-typescript-sdk": "^1.3.2",
"@node-rs/bcrypt": "^1.7.3",
"@octokit/rest": "^20.0.2",
"@passport-js/passport-twitter": "^1.0.8",
"@popperjs/core": "^2.11.8",
"@prisma/client": "^6.0.1",
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"bootstrap": "^5.3.2",
"chart.js": "^4.4.0",
"cheerio": "^1.0.0-rc.10",
"compression": "^1.7.4",
"connect-pg-simple": "^10.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"errorhandler": "^1.5.1",
"express": "5.0.0",
"express-flash": "^0.0.2",
"express-rate-limit": "^7.1.1",
"express-session": "^1.17.3",
"jquery": "^3.7.1",
"lastfm": "^0.9.4",
"lodash": "^4.17.21",
"lusca": "^1.7.0",
"mailchecker": "^5.0.9",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "6.9.9",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth": "^2.0.0",
"passport-linkedin-oauth2": "^2.0.0",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"passport-oauth2-refresh": "^2.2.0",
"passport-snapchat": "^1.0.0",
"passport-steam-openid": "^1.0.2",
"patch-package": "^8.0.0",
"paypal-rest-sdk": "^1.8.1",
"pug": "^3.0.3",
"sass": "^1.69.3",
"stripe": "^14.1.0",
"twilio": "^4.18.1",
"twitch-passport": "^1.0.6",
"validator": "^13.11.0"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"prisma": "^6.0.1",
"sinon": "^16.1.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=18"
},
"prisma": {
"schema": "prisma/schema/"
}
}