-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "passport-sodium-demo",
"version": "0.1.1",
"description": "Express/Passport demo using libsodium.",
"main": "index.js",
"scripts": {
"dev": "nodemon index",
"knex": "knex",
"postinstall": "knex migrate:latest",
"start": "node index",
"test": "ava",
"test:watch": "ava --watch"
},
"author": "EDA",
"license": "ISC",
"dependencies": {
"body-parser": "^1.16.0",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"connect-session-knex": "^1.3.1",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-force-ssl": "^0.3.2",
"express-handlebars": "^3.0.0",
"express-jwt": "^5.1.0",
"express-session": "^1.15.0",
"jsonwebtoken": "^7.2.1",
"knex": "^0.12.6",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"sodium": "^2.0.1"
},
"devDependencies": {
"ava": "^0.17.0",
"eslint": "^3.14.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"nodemon": "^1.11.0",
"sqlite3": "^3.1.8",
"supertest": "^2.0.1"
},
"ava": {
"require": [
"dotenv/config"
]
},
"engines": {
"node": ">=7.0.0"
}
}