UNPKG

1.71 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 "lodash.kebabcase": "^4.1.1",
26 "lodash.get": "^4.4.2",
27 "mongodb": "^2.2.11",
28 "nodemailer": "^4.0.1",
29 "passport": "^0.3.2",
30 "passport-jwt": "^2.2.1",
31 "passport-local": "^1.0.0",
32 "shortid": "^2.2.6"
33 },
34 "description": "An express framework for implementing a sign, jwt, aws-nodemailer system with possible customized api accesses",
35 "devDependencies": {
36 "ava": "^0.18.2",
37 "babel-cli": "^6.24.1",
38 "babel-polyfill": "^6.23.0",
39 "babel-preset-latest": "^6.24.1",
40 "concurrently": "^3.1.0",
41 "nodemon": "^1.11.0"
42 },
43 "license": "MIT",
44 "main": "lib/index.js",
45 "name": "transactions-express-passport",
46 "scripts": {
47 "compile": "./node_modules/.bin/babel --presets latest -d lib/ src/",
48 "test": "ava -v",
49 "localhost": "concurrently \"npm run localhost-database\" \"npm run localhost-express\"",
50 "localhost-database" : "sh scripts/localhost_database.sh",
51 "localhost-express" : "node scripts/localhost_express.js",
52 "dev": "concurrently \"npm run dev-database\" \"npm run dev-watch\"",
53 "dev-database": "sh scripts/localhost_database.sh",
54 "dev-watch": "nodemon --watch src --exec \"npm run compile\""
55 },
56 "version": "0.0.33"
57}