aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json56
1 files changed, 56 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..e565949
--- /dev/null
+++ b/package.json
@@ -0,0 +1,56 @@
+{
+ "name": "texx-server",
+ "description": "Texx is an advanced network for social interactions",
+ "version": "0.0.0",
+ "homepage": "",
+ "main": "src",
+ "keywords": [
+ "feathers"
+ ],
+ "author": {
+ "name": "Marvin Borner",
+ "email": "marvin-borner@live.com"
+ },
+ "contributors": [],
+ "bugs": {},
+ "directories": {
+ "lib": "src",
+ "test": "test/"
+ },
+ "engines": {
+ "node": "^8.0.0",
+ "npm": ">= 3.0.0"
+ },
+ "scripts": {
+ "test": "npm run eslint && npm run mocha",
+ "eslint": "eslint src/. test/. --config .eslintrc.json",
+ "dev": "nodemon src/",
+ "start": "node src/",
+ "mocha": "mocha test/ --recursive --exit"
+ },
+ "dependencies": {
+ "@feathersjs/authentication": "^2.1.11",
+ "@feathersjs/authentication-jwt": "^2.0.5",
+ "@feathersjs/authentication-local": "^1.2.5",
+ "@feathersjs/configuration": "^2.0.4",
+ "@feathersjs/errors": "^3.3.4",
+ "@feathersjs/express": "^1.2.7",
+ "@feathersjs/feathers": "^3.2.3",
+ "@feathersjs/socketio": "^3.2.6",
+ "compression": "^1.7.3",
+ "cors": "^2.8.4",
+ "feathers-sequelize": "^3.1.2",
+ "helmet": "^3.14.0",
+ "mysql2": "^1.6.1",
+ "sequelize": "^4.41.0",
+ "serve-favicon": "^2.5.0",
+ "winston": "^3.1.0"
+ },
+ "devDependencies": {
+ "eslint": "^5.6.0",
+ "mocha": "^5.2.0",
+ "nodemon": "^1.18.4",
+ "request": "^2.88.0",
+ "request-promise": "^4.2.2"
+ }
+}