-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.64 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "nacho-night-auth-api",
"version": "1.0.0",
"description": "Auth API",
"main": "app/index.js",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"test": "mocha app/test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NachoNight/nacho-night-auth-api.git"
},
"keywords": [
"NachoNight"
],
"author": "NachoNight",
"license": "ISC",
"bugs": {
"url": "https://github.com/NachoNight/nacho-night-auth-api/issues"
},
"homepage": "https://github.com/NachoNight/nacho-night-auth-api#readme",
"dependencies": {
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"ejs": "^2.7.1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"node-cache": "^4.2.1",
"nodemailer": "^6.3.0",
"passport": "^0.4.0",
"passport-discord": "^0.1.3",
"passport-google-oauth": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-oauth2-refresh": "^1.1.0",
"passport-twitter": "^1.0.4",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.19.1",
"uuid": "^3.3.3",
"validator": "^11.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.15.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"prettier": "^1.18.2"
}
}