Initial commit

This commit is contained in:
John Lyon-Smith
2018-02-22 17:57:27 -08:00
commit e80f5490d5
196 changed files with 38982 additions and 0 deletions

77
server/package.json Normal file
View File

@@ -0,0 +1,77 @@
{
"name": "dar-server",
"version": "1.0.0",
"description": "Deighton AR Server",
"main": "src/server.js",
"scripts": {
"start": "babel-node src/index.js",
"start:prod": "NODE_ENV=production npm start",
"build": "babel src -d dist -s",
"serve": "NODE_ENV=production node dist/server.js",
"test": "jest",
"actor:api": "monzilla 'src/api/**/*.js:src/database/**/*.js' -- babel-node src/api/index.js",
"actor:api:debug": "babel-node --inspect-brk src/api/index.js",
"actor:image": "monzilla 'src/image/**/*.js:src/(message-service|database)/**/*.js' -- babel-node src/image/index.js",
"actor:image:debug": "babel-node --inspect-brk src/image/index.js",
"actor:email": "monzilla 'src/email/**/*.js:src/(message-service|database)/**/*.js' -- babel-node src/email/index.js",
"actor:email:debug": "babel-node --inspect-brk src/email/index.js"
},
"author": "John Lyon-Smith",
"license": "ISC",
"dependencies": {
"amqplib": "^0.5.1",
"app-root-path": "^2.0.1",
"auto-bind2": "^1.0.3",
"aws-sdk": "^2.98.0",
"body-parser": "^1.17.1",
"canvas": "^1.6.7",
"config": "^1.25.1",
"cors": "^2.8.3",
"credential": "^2.0.0",
"eventemitter3": "^2.0.3",
"express": "^4.15.2",
"gridfs-stream": "^1.1.1",
"handlebars": "^4.0.10",
"http-errors": "^1.6.1",
"json5": "^0.5.1",
"jsonwebtoken": "^7.4.0",
"mongodb": "^2.2.31",
"mongoose": "^4.11.7",
"mongoose-merge-plugin": "0.0.5",
"nodemailer": "^4.0.1",
"passport": "^0.3.2",
"passport-http-bearer": "^1.0.1",
"pino": "^4.10.1",
"pino-pretty-express": "^1.0.4",
"redis": "^2.7.1",
"redis-rstream": "^0.1.3",
"regexp-pattern": "^1.0.4",
"replace-ext": "^1.0.0",
"socket.io": "^2.0.3",
"urlsafe-base64": "^1.0.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"istanbul": "^0.4.5",
"jest": "^21.1.0",
"monzilla": "^1.1.0"
},
"private": true,
"keywords": {
"0": "rest",
"1": "api",
"2": "deighton"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/KingstonSoftware/deighton-ar.git"
},
"bugs": {
"url": "https://github.com/KingstonSoftware/deighton-ar/issues"
},
"homepage": "https://github.com/KingstonSoftware/deighton-ar#readme"
}