-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "cornlet",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "HTTPS=true && NODE_ENV=production && node --max-old-space-size=4096 app",
"dev": "NODE_ENV=development run-p api-dev client-dev",
"api-dev": "PORT=8081 nodemon app",
"client-dev": "cd client && npm run-script dev",
"heroku-postbuild": "NODE_OPTIONS=--openssl-legacy-provider && NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"lint": "eslint ./routes ./models app.js socket.js ./auth --fix && cd client && npm run lint"
},
"dependencies": {
"@material-ui/core": "^4.8.3",
"@tinymce/tinymce-react": "^3.3.2",
"axios": "^0.21.2",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bootpay-js": "^3.1.1",
"cheerio": "^1.0.0-rc.3",
"compression": "^1.7.4",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-session": "^1.17.0",
"firebase": "^7.14.1",
"http-errors": "~1.6.3",
"iconv-lite": "^0.5.1",
"jade": "~1.11.0",
"moment": "^2.24.0",
"mongoose": "^5.7.7",
"mongoose-paginate-v2": "^1.3.6",
"morgan": "~1.9.1",
"nodemailer": "^6.4.8",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"passport-local": "^1.0.0",
"qs": "^6.9.1",
"query-string": "^6.10.1",
"react-responsive-carousel": "^3.1.51",
"react-slick": "^0.25.2",
"socket.io": "^2.3.0",
"throttle-debounce": "^2.1.0",
"use-persisted-state": "^0.3.0"
},
"engines": {
"npm": "8.1.0",
"node": "17.0.1"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"prettier": "2.4.1"
}
}