-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "apteka",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js",
"dev": "nodemon app.js --ignore sessions",
"migrate": "npx sequelize-cli db:migrate",
"unmigrate": "npx sequelize-cli db:migrate:undo:all",
"seed": "npx sequelize-cli db:seed:all",
"unseed": "npx sequelize-cli db:seed:undo:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ildar979/Apteka.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ildar979/Apteka/issues"
},
"homepage": "https://github.com/ildar979/Apteka#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"hbs": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nodemailer": "^6.7.3",
"passport": "^0.5.2",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.19.0",
"sequelize-cli": "^6.4.1",
"session-file-store": "^1.5.0"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.15",
"pg": "^8.7.3"
}
}