-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "local-api",
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"deploy": "git push heroku master",
"seedUsers": "node scripts/seedUsers.js",
"seedPosts": "node scripts/seedPosts.js",
"syncAlgoliaUsers": "node scripts/syncAllAlgoliaUsers.js",
"syncAlgoliaPosts": "node scripts/syncAllAlgoliaPosts.js",
"format": "prettier --write \"./**/*.{js,json,md,}\""
},
"dependencies": {
"@bugsnag/js": "^7.3.0",
"@bugsnag/plugin-express": "^7.3.0",
"@lykmapipo/mongoose-faker": "^0.11.0",
"algoliasearch": "^4.8.2",
"apollo-server": "^2.9.16",
"apollo-server-express": "^2.9.16",
"apollo-server-plugin-response-cache": "^0.5.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.15.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.16.4",
"faker": "^5.0.0",
"git": "^0.1.5",
"honeybadger": "^1.3.0",
"jsonwebtoken": "^8.5.1",
"mention-hashtag": "^1.1.1",
"mongoose": "^5.7.0",
"nodemailer": "^6.2.1",
"nodemailer-sendgrid": "^1.0.3",
"subscriptions-transport-ws": "^0.9.16",
"uuid": "^8.3.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"jsxBracketSameLine": false
}
}