-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "authentication-service",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon app.js",
"auth": "concurrently \"nodemon app.js\" \"cd client && npm start\"",
"bootstrap": "(npm install) && (npm run createSchema) && (npm run migrations) && (npm run seeds) && (npm run intallClient)",
"intallClient": "cd client && npm install",
"createSchema": "npx sequelize db:create authservice",
"migrations": "npx sequelize db:migrate",
"seeds": "npx sequelize db:seed:all"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "^3.1.10",
"express": "~5.0.1",
"express-rate-limit": "^6.7.0",
"express-validator": "^6.6.1",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.0",
"morgan": "~1.9.1",
"mysql2": "^3.9.8",
"node-schedule": "^2.1.0",
"nodemailer": "^6.9.9",
"semver": "^7.5.2",
"sequelize": "^6.29.0",
"sequelize-cli": "^5.5.1",
"yaml": "^2.2.2"
},
"devDependencies": {
"concurrently": "^6.4.0",
"nodemon": "^2.0.19"
}
}