-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 KB
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
{
"name": "streamwave-auth",
"version": "1.0.0",
"description": "authentication-api for streamwave",
"main": "server.js",
"scripts": {
"test": "jest test",
"start": "docker-compose up -d && nodemon server.js",
"prod": "NODE_ENV=production node server.js",
"dev:clean": "node utils/clean-db.js",
"security-check": "nsp check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mathieu-R/streamwave-auth.git"
},
"keywords": [
"streamwave",
"authentication"
],
"author": "Mathieu-R",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mathieu-R/streamwave-auth/issues"
},
"homepage": "https://github.com/Mathieu-R/streamwave-auth#readme",
"dependencies": {
"bcrypt": "^2.0.0",
"connect-redis": "^3.3.3",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-validator": "^4.3.0",
"google-auth-library": "^1.6.1",
"handlebars": "^4.0.11",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.1.5",
"nodemailer": "^4.6.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"jest": "^22.4.4",
"nodemon": "^1.17.5",
"nsp": "^3.2.1",
"rr-guerrillamail": "^0.2.0"
}
}