-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "auth-project-two",
"version": "3.0.0",
"description": "Project 2 Starter",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "eslint --quiet .; exit 0",
"fix": "eslint --fix .; exit 0",
"test": "jest --verbose --coverage"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sdanyalk/auth-project-two.git"
},
"bugs": {
"url": "https://github.com/sdanyalk/auth-project-two/issues"
},
"dependencies": {
"@glidejs/glide": "^3.4.1",
"@handlebars/allow-prototype-access": "^1.0.3",
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^4.0.4",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.1.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sequelize": "^5.21.13"
},
"devDependencies": {
"coveralls": "^3.1.0",
"jest": "^26.0.1",
"supertest": "^4.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.16.0"
}
}