tracman-server/package.json

77 lines
2.2 KiB
JSON
Raw Normal View History

2016-03-31 17:06:21 -06:00
{
"name": "tracman",
2018-01-22 15:57:41 -07:00
"version": "0.8.2",
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",
"body-parser": "^1.18.2",
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",
2017-09-25 21:30:42 -06:00
"css-loader": "^0.28.7",
2018-03-04 13:15:43 -07:00
"csurf": "^1.9.0",
2017-09-25 21:30:42 -06:00
"debug": "^2.6.9",
"express": "^4.15.5",
"express-request-limit": "^1.0.2",
"helmet": "^3.12.0",
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",
2017-06-30 10:38:06 -06:00
"moment": "^2.18.1",
2017-09-25 21:30:42 -06:00
"mongoose": "^4.11.13",
"mongoose-unique-validator": "^1.0.6",
"nodemailer": "^4.1.1",
2017-06-30 10:38:06 -06:00
"nunjucks": "^3.0.1",
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",
2017-09-25 21:30:42 -06:00
"passport-google-id-token": "^0.4.3",
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",
2017-09-25 21:30:42 -06:00
"request": "^2.82.0",
2016-03-31 17:06:21 -06:00
"slug": "^0.9.1",
2017-06-30 10:38:06 -06:00
"socket.io": "^2.0.3",
2017-06-23 11:00:42 -06:00
"socket.io-client": "^2.0.3",
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",
2017-09-25 21:30:42 -06:00
"xss": "^0.3.4",
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",
"mocha": "^4.0.1",
"mocha-froth": "^0.2.1",
2017-06-30 10:38:06 -06:00
"nodemon": "^1.11.0",
2017-11-16 16:53:15 -07:00
"standard": "^10.0.3",
2018-01-19 14:23:43 -07:00
"superagent": "^3.8.2",
2017-07-11 02:20:48 -06:00
"supertest": "^3.0.0"
2016-03-31 17:06:21 -06:00
},
"scripts": {
"test": "mocha",
"lint": "standard",
2016-09-08 15:53:40 -06:00
"start": "node server.js",
"nodemon": "nodemon --ignore 'static/**/*.min.*' server.js",
2017-10-09 19:03:36 -06:00
"update": "sudo npm update && sudo npm prune",
2017-08-22 17:08:04 -06:00
"minify": "minify --template .{{filename}}.min.{{ext}} --clean static/css*",
2017-12-12 17:40:07 -07:00
"build": "./node_modules/.bin/webpack --config webpack.config.js",
2017-07-14 02:02:50 -06:00
"subuild": "sudo ./node_modules/.bin/webpack --config webpack.config.js"
2016-03-31 17:06:21 -06: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
}