-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "todos-express-keyp",
"version": "0.0.0",
"private": true,
"description": "Todo app using Express and Passport.js for sign in with Keyp.",
"keywords": [
"example",
"express",
"passport",
"sqlite",
"keyp"
],
"author": {
"name": "Keyp Team",
"url": "https://www.usekeyp.com/"
},
"homepage": "https://github.com/UseKeyp/usekeyp-example-app-express",
"repository": {
"type": "git",
"url": "https://github.com/UseKeyp/usekeyp-example-app-express"
},
"bugs": {
"url": "https://github.com/UseKeyp/usekeyp-example-app-express/issues"
},
"license": "Unlicense",
"scripts": {
"start": "node ./bin/www",
"lint": "eslint .",
"dev": "nodemon ./bin/www"
},
"dependencies": {
"connect-ensure-login": "^0.1.1",
"connect-sqlite3": "^0.9.13",
"cookie-parser": "~1.4.4",
"cross-fetch": "^3.1.5",
"csurf": "^1.11.0",
"debug": "~2.6.9",
"dotenv": "^8.6.0",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-session": "^1.17.2",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.0",
"mkdirp": "^1.0.4",
"morgan": "~1.9.1",
"passport": "^0.6.0",
"passport-oauth2": "^1.6.1",
"pluralize": "^8.0.0",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"eslint": "latest",
"nodemon": "^2.0.20"
}
}