-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "node-template",
"version": "0.1.2",
"description": "Template Node with Auth0",
"main": "index.js",
"repository": "https://github.com/PencilEater/node-template.git",
"author": "Maastrich",
"license": "MIT",
"scripts": {
"start": "nodemon main",
"clean": "rm -rf node_modules package-lock.json yarn.lock",
"config:env": "node --trace-warnings .config/env-managment/config.js && cp .config/env-managment/dev.env .env"
},
"private": false,
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"express-session": "^1.17.1",
"handlebars": "^4.7.6",
"isomorphic-fetch": "^2.2.1",
"js-sha256": "^0.9.0",
"jsonwebtoken": "^8.5.1",
"marked": "^1.1.0",
"mongodb": "^3.5.8",
"nodemailer": "^6.4.8",
"nodemailer-smtp-transport": "^2.7.4",
"passport": "^0.4.1",
"passport-auth0": "^1.3.2",
"path": "^0.12.7",
"pug": "^3.0.0",
"wait-for-user-input": "^1.0.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}