-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "fxpippette",
"version": "1.0.0",
"private": true,
"main": "app.js",
"directories": {
"test": "test"
},
"author": "Ichinga Samuel",
"license": "MIT",
"scripts": {
"start": "node app",
"dev": "cross-env NODE_ENV=development nodemon app",
"test": "mocha"
},
"engines": {
"node": "12.x"
},
"dependencies": {
"base64url": "^3.0.1",
"connect-mongo": "^3.2.0",
"consolidate": "^0.15.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"email-verifier": "^0.4.1",
"express": "~4.16.1",
"express-session": "^1.17.1",
"googleapis": "^64.0.0",
"http-errors": "~1.7.2",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mocha": "^8.1.1",
"moment": "^2.27.0",
"mongoose": "^5.10.0",
"morgan": "~1.9.1",
"nodemailer": "^6.4.11",
"nodemailer-sendinblue-transport": "^1.2.3",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-local": "1.0.0",
"paypal-rest-sdk": "^1.8.1",
"pug": "2.0.0-beta11",
"request": "^2.88.2",
"shortid": "^2.2.15",
"superagent": "^3.8.0"
},
"devDependencies": {
"chai": "^4.2.0",
"expect": "^26.2.0",
"cross-env": "^7.0.2",
"nodemon": "^2.0.4"
}
}