UNPKG

1.65 kBJSONView Raw
1{
2 "ava": {
3 "babel": {
4 "presets": [
5 "latest"
6 ]
7 },
8 "require": [
9 "babel-register",
10 "babel-polyfill"
11 ]
12 },
13 "author": "Erwan Ledoux",
14 "dependencies": {
15 "aws-sdk": "^2.6.13",
16 "bcrypt-nodejs": "^0.0.3",
17 "body-parser": "^1.17.2",
18 "compression": "^1.6.2",
19 "connect-flash": "^0.1.1",
20 "connect-mongo": "^1.3.2",
21 "cookie-parser": "^1.4.3",
22 "express": "^4.14.0",
23 "express-session": "^1.14.1",
24 "jsonwebtoken": "^7.1.9",
25 "mongodb": "^2.2.11",
26 "nodemailer": "^4.0.1",
27 "passport": "^0.3.2",
28 "passport-jwt": "^2.2.1",
29 "passport-local": "^1.0.0",
30 "shortid": "^2.2.6"
31 },
32 "description": "An express framework for implementing a sign, jwt, aws-nodemailer system with possible customized api accesses",
33 "devDependencies": {
34 "ava": "^0.18.2",
35 "babel-cli": "^6.24.1",
36 "babel-polyfill": "^6.23.0",
37 "babel-preset-latest": "^6.24.1",
38 "concurrently": "^3.1.0",
39 "nodemon": "^1.11.0"
40 },
41 "license": "MIT",
42 "main": "lib/index.js",
43 "name": "transactions-express-passport",
44 "scripts": {
45 "compile": "./node_modules/.bin/babel --presets latest -d lib/ src/",
46 "test": "ava -v",
47 "localhost": "concurrently \"npm run localhost-database\" \"npm run localhost-express\"",
48 "localhost-database" : "sh scripts/localhost_database.sh",
49 "localhost-express" : "node scripts/localhost_express.js",
50 "dev": "concurrently \"npm run dev-database\" \"npm run dev-watch\"",
51 "dev-database": "sh scripts/localhost_database.sh",
52 "dev-watch": "nodemon --watch src --exec \"npm run compile\""
53 },
54 "version": "0.0.10"
55}