-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
42 lines (42 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
{
"name": "node-eauth-server",
"version": "2.4.1",
"description": "An OAuth-compatiable service based on Ethereum credentials to authenticate users on a website.",
"author": "Pelith",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config index.js ",
"dev": "nodemon -r dotenv/config index.js"
},
"dependencies": {
"async": "^2.6.2",
"body-parser": "^1.18.3",
"connect-session-sequelize": "^6.0.0",
"dotenv": "^8.2.0",
"ethereum-ens": "^0.8.0",
"express": "^4.16.4",
"express-eauth": "^2.1.1",
"express-session": "^1.16.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.0",
"mysql2": "^1.6.5",
"oauth2-server": "4.0.0-dev.3",
"pug": "^3.0.2",
"qrcode": "^1.3.3",
"sequelize": "^5.3.0",
"socket.io": "^2.4.1",
"socket.io-cookie-parser": "^1.0.0"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jquery": "^1.5.0",
"nodemon": "^2.0.4",
"sequelize-cli": "^5.5.0"
},
"optionalDependencies": {
"sqlite3": "^5.0.2"
}
}