-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.04 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": "user-management-template-backend",
"description": "User Management Template Backend",
"scripts": {
"start": "cross-env NODE_ENV=production nodemon ./src/index.js",
"start:dev": "cross-env nodemon ./src/index.js",
"reset": "cross-env node ./src/db/reset.js"
},
"engines": {
"node": "12.9.1"
},
"dependencies": {
"bcrypt": "5.0.0",
"cors": "2.8.5",
"cross-env": "7.0.2",
"dotenv": "^8.2.0",
"express": "4.17.1",
"formidable": "1.2.2",
"helmet": "4.1.1",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.20",
"mocha": "8.1.3",
"moment": "2.29.1",
"mysql2": "2.2.5",
"node-cron": "^3.0.0",
"node-mocks-http": "1.9.0",
"nodemailer": "6.3.1",
"nodemon": "2.0.5",
"passport": "^0.4.1",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.0",
"passport-microsoft": "^0.1.0",
"pg": "8.4.1",
"pg-hstore": "2.3.3",
"sequelize": "6.3.5",
"sequelize-cli": "6.2.0",
"sqlite": "4.0.15",
"stripe": "^8.135.0"
},
"private": true
}