tracman-server/package.json

93 lines
2.9 KiB
JSON
Raw Normal View History

2016-03-31 17:06:21 -06:00
{
"name": "tracman",
2018-03-05 20:38:22 -07:00
"version": "0.9.0",
2016-03-31 17:06:21 -06:00
"description": "Tracks user's GPS location",
"main": "server.js",
"dependencies": {
2017-09-25 21:30:42 -06:00
"bcrypt": "^1.0.3",
2018-07-23 13:41:47 -06:00
"body-parser": "^1.18.3",
2017-04-16 19:00:39 -06:00
"connect-flash-plus": "^0.2.1",
2017-06-30 10:38:06 -06:00
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.2",
2018-03-04 13:15:43 -07:00
"csurf": "^1.9.0",
2017-09-25 21:30:42 -06:00
"debug": "^2.6.9",
2018-07-23 13:41:47 -06:00
"express": "^4.16.3",
"express-request-limit": "^1.0.2",
2018-07-23 13:41:47 -06:00
"helmet": "^3.13.0",
"helmet-csp": "^2.7.1",
2017-06-23 11:00:42 -06:00
"jquery": "^3.2.1",
2017-06-23 12:33:17 -06:00
"load-google-maps-api": "^1.0.0",
2017-08-22 16:59:49 -06:00
"minifier": "^0.8.1",
2018-07-23 13:41:47 -06:00
"moment": "^2.22.2",
2018-03-04 13:39:45 -07:00
"mongo-sanitize": "^1.0.0",
2018-08-14 13:38:13 -06:00
"mongoose": "^4.13.15",
2017-09-25 21:30:42 -06:00
"mongoose-unique-validator": "^1.0.6",
2018-07-23 13:41:47 -06:00
"nodemailer": "^4.6.7",
"nunjucks": "^3.1.3",
2016-03-31 17:06:21 -06:00
"passport": "^0.3.2",
2017-04-01 11:03:05 -06:00
"passport-facebook": "^2.1.1",
2017-04-19 19:37:00 -06:00
"passport-facebook-token": "^3.3.0",
2018-08-14 13:38:13 -06:00
"passport-google-id-token": "^0.4.5",
2017-04-01 11:03:05 -06:00
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
2017-04-19 19:37:00 -06:00
"passport-twitter-token": "^1.3.0",
2018-08-14 13:38:13 -06:00
"request": "^2.88.0",
2016-03-31 17:06:21 -06:00
"slug": "^0.9.1",
2018-07-23 13:41:47 -06:00
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
2017-07-14 02:02:50 -06:00
"style-loader": "^0.18.2",
2017-07-21 07:17:06 -06:00
"uglifyjs-webpack-plugin": "^0.4.6",
2017-09-25 18:45:36 -06:00
"webpack": "^3.6.0",
2018-07-23 13:41:47 -06:00
"xss": "^0.3.8",
2017-06-30 10:45:24 -06:00
"zxcvbn": "^4.4.2"
2016-03-31 17:06:21 -06:00
},
"devDependencies": {
2017-12-14 11:58:09 -07:00
"chai": "^4.1.2",
2017-06-30 10:38:06 -06:00
"chai-http": "^3.0.0",
2018-07-23 13:41:47 -06:00
"coveralls": "^3.0.2",
2018-03-04 19:31:38 -07:00
"istanbul": "^1.0.0-alpha.2",
"less": "^3.0.1",
"less-plugin-clean-css": "^1.5.1",
"mocha": "^4.0.1",
2018-08-14 13:38:13 -06:00
"mocha-froth": "^0.2.10",
2018-07-23 13:41:47 -06:00
"nodemon": "^1.18.3",
2018-03-04 19:36:53 -07:00
"nsp": "^3.2.1",
2017-11-16 16:53:15 -07:00
"standard": "^10.0.3",
2018-07-23 13:41:47 -06:00
"superagent": "^3.8.3",
"supertest": "^3.1.0"
2016-03-31 17:06:21 -06:00
},
"scripts": {
2018-03-08 19:41:02 -07:00
"test": "node_modules/mocha/bin/_mocha",
2018-03-04 19:31:38 -07:00
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --exit test/*",
2018-03-04 19:36:53 -07:00
"audit": "node_modules/nsp/bin/nsp audit-package ; node_modules/nsp/bin/nsp audit-shrinkwrap",
"lint": "standard",
2016-09-08 15:53:40 -06:00
"start": "node server.js",
2018-03-08 20:30:44 -07:00
"nodemon": "nodemon",
"update": "sudo npm prune && sudo npm update",
"less": "for file in static/css/*.css; do lessc --clean-css $file static/css/.$(basename ${file%.*}).min.css; done",
"uglify": "for file in static/js/*.js; do uglifyjs $file --output static/js/.$(basename ${file%.*}).min.js --verbose --compress --mangle 'reserved=google.maps'; done",
"build": "rm static/**/.*.min.* ; npm run less ; npm run uglify"
2016-03-31 17:06:21 -06:00
},
2018-03-08 19:39:10 -07:00
"nodemonConfig": {
"ext": "html, js, json, less, css",
2018-03-08 20:30:44 -07:00
"ignore": "['static/**/*.min.*','*.md','test/*','config/env/*']",
"events": {
"start": "npm run build",
"restart": "npm run build"
}
2018-03-08 19:39:10 -07:00
},
2017-04-28 13:57:01 -06:00
"repository": "Tracman-org/Server",
2016-03-31 17:06:21 -06:00
"keywords": [
"gps",
2016-03-31 17:06:21 -06:00
"tracking",
"location",
"map"
],
"author": "Keith Irwin",
2017-03-18 09:41:51 -06:00
"license": "GPL-3.0",
2016-03-31 17:06:21 -06:00
"README": "README.md",
2017-04-28 13:57:01 -06:00
"bugs": "https://github.com/Tracman-org/Server/issues",
2018-01-30 07:50:53 -07:00
"homepage": "https://www.tracman.org/"
2016-03-31 17:06:21 -06:00
}