-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.59 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": "just_recipes",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/eking1082/just_recipes.git"
},
"license": "UNLICENSED",
"author": "Evan King",
"scripts": {
"postinstall": "npm rebuild node-sass",
"start": "node app.js",
"test": "nyc mocha",
"test-watch": "nodemon --exec 'nyc mocha -R min'",
"lint": "eslint \"**/*.js\"",
"migrate": "migrate"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"@ladjs/bootstrap-social": "^7.0.2",
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"bluebird": "^3.7.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"bootswatch": "^4.3.1",
"chart.js": "^2.8.0",
"cheerio": "^1.0.0-rc.3",
"colors": "^1.4.0",
"compression": "^1.7.4",
"connect-mongo": "^3.0.0",
"death": "^1.1.0",
"dotenv": "^8.1.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-flash": "^0.0.2",
"express-handlebars": "^3.1.0",
"express-session": "^1.16.2",
"fbgraph": "^1.4.4",
"glob": "^7.1.4",
"googleapis": "^43.0.0",
"imagesloaded": "^4.1.4",
"infinite-scroll": "^3.0.6",
"jquery": "^3.4.1",
"jquery-ui-dist": "^1.12.1",
"lazyload": "^2.0.0-rc.2",
"lodash": "^4.17.15",
"lusca": "^1.6.1",
"mailchecker": "^3.2.35",
"masonry-layout": "^4.2.2",
"migrate-mongoose": "^4.0.0",
"moment": "^2.24.0",
"mongoose": "^5.7.1",
"morgan": "^1.9.1",
"node-sass": "^4.12.0",
"node-sass-middleware": "^0.11.0",
"nodemailer": "^6.3.0",
"numeral": "^2.0.6",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-google-oauth": "^2.0.0",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"passport-oauth2-refresh": "^1.1.0",
"passport-openid": "^0.4.0",
"popper.js": "^1.15.0",
"progress": "^2.0.3",
"pug": "^2.0.4",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"simplecrawler": "^1.1.8",
"twit": "^2.2.11",
"uuid": "^3.3.3",
"validator": "^11.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-exclude": "^2.0.2",
"eslint": "^6.5.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.1",
"nodemon": "^1.19.3",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"sinon-mongoose": "^2.3.0",
"supertest": "^4.0.2"
},
"engines": {
"node": ">=8.16.1",
"npm": ">=6.4.1"
},
"mocha": {
"exit": true,
"spec": "test/**/*.test.js",
"timeout": 5000
}
}