forked from wilsoncollin7/EventSafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.56 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "project2",
"version": "1.5.0",
"description": "Project2 Starter with Express, Handlebars, Sequelize, and Authentication with Passport.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "eslint . --ext .js --quiet",
"fix": "eslint --fix .",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/wilsoncollin7/project-2"
},
"engines": {
"npm": "5.7.1",
"node": "11.12.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wilsoncollin7/project-2/issues"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"homepage": "https://github.com/wilsoncollin7/project-2#project-2",
"dependencies": {
"bcrypt": "^5.0.0",
"connect-session-sequelize": "^7.0.3",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.1.0",
"express-session": "^1.17.1",
"helmet": "^4.1.1",
"moment": "^2.29.0",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sequelize": "^6.3.5"
},
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"prettier": "^2.1.2"
}
}